Home All Groups Group Topic Archive Search About

passing query string as variable from aspx.cs to aspx

Author
15 Aug 2006 2:05 PM
vivekrobotics
hi all,
this is vivek

/// Write out hyperlinks that show the descriptions and include the
ImageID in a querystring

Response.Write("<a href='Description.aspx?imageid=" + myDR["ImageID"] +
"'>" + myDR["ItemCode"]+ "    " + myDR["Description"] + "&br&br&br" +
myDR["Price"] + "</a><br>");

Now I want to use this in datagrid's hyperlink column in navigateurl
property.

I don't know how to pass any variable from aspx.cs page to aspx page.

Plz help