Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Friends,

I have a dropdownlist and a gridview,
if user selects one item it is displaying that particular item details in GRIDVIEW.

I want to pass Querystring if the user selected one item from dropdownlist.

I have list of items in dropdownlist as

-----Select------
sort by date
sort by name
sort by id

if the user selected from dropdownlist... this particular selected item must show as query string in BROWSER as details.aspx?selected=sort by date

Please help me Thanks
Posted

On your dropdownlist's selectedIndexChanged event handler you can redirect to the page.

C#
Response.Redirect("Details.aspx?selected="+ddlId.SelectedItem.Value);


You need to set AutoPostBack = true for your drop down list.
 
Share this answer
 
hii,

on Dropdownlist selected index changed event

Response.Redirect(HttpContext.Current.Request.Url.AbsoluteUri+"?selected=" + DropDownList1.SelectedItem.Value);

and autopostback must be true
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900