Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing drop down text/value to another page.

Status
Not open for further replies.

veronic

Programmer
Apr 6, 2004
73
0
0
US
I have a grid with populated summary data which depends on drop down selection by departments.
One column in this grid is hyperlink which send three different parameters to detail screen. I am using URL on the HTML side: NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.STATUS_DESC", "../reports/rp_balancesum_det.aspx?stStat="+DataBinder.Eval(Container.DataItem, "STATUS_CODE </asp:HyperLink>

and I get it in next page like:
strStatus = Request.QueryString("stStat")
strAudit = Request.QueryString("stAud")

I need to be able to send drop down value or text to detail screen too and this value is not a part of my dataset.
I cannot use Response.redirect....
How can I do this programatically?
 
This VB 5 & 6 forum, not ASP.NET. Sorry, I don't have the link handy for the ASP.NET forum.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top