do you want to display the JPG or the text line
if the JPG then
-------------------------------
<html>
<head>
<title>My ASP</title>
</head>
<body>
This is My frist asp Page.<br>
You Entered:<br><img src="<%Request.QueryString("id")%>.jpg">
</body>
</html>
------------------------------
if you want to display the text then use a form and then
-----------------------------------------
<html>
<head>
<title>My ASP</title>
</head>
<body>This is My frist asp Page.<br>
You Entered:<%Response.Write(Request.Form("id"))%>
</body>
</html>
----------------------------------------
something like that should do it