| Author: Raju.M 30 Aug 2008 | Member Level: Gold | Rating: Points: 3 |
assassin a label fiels in r code.set its visibility false.when query string have value set that value to label.text. then bind value in grid view template field
|
| Author: krishnasamy 30 Aug 2008 | Member Level: Silver | Rating: Points: 3 |
hai, i can't understand your question. Query string means pass value one page to another page. index.aspx -------------- response.redirect("register.aspx?id="+id);
register.aspx ---------------- int udid; udid=convert.toint32(udid);
|
| Author: Swaminathan 30 Aug 2008 | Member Level: Gold | Rating: Points: 4 |
Code to send query string is below:
Response.redirect("page.aspx?b=value")
Code to retrieve query string is below and should be put in the page load event of page.aspx
Dim y as string = Request.QueryString("b")
You can use the retrieved query string in your query to retrieve data from your database.
|
| Author: Athira Appukuttan 01 Sep 2008 | Member Level: Diamond | Rating: Points: 1 |
From:
response.redirect("aa.aspx?id=1");
Nextpage:
string id=response.quesrystring("id");
|