Have one page called articles.
Include your article content via a querystring.
e.g. articles.asp?article_id=23
Have database code in your file to output the article data from the database according to the querystring.
Code:
article_id = Request.QueryString("article_id")
' do some validation here. Trim, IsNumeric, InStr(" "), Replace ' '' etc.
sql = "SELECT * FROM articles WHERE article_id = " & article_id