Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ASP.NET 中,我有一个下拉菜单和一个按钮。如果我从下拉列表中选择一个值并单击按钮,我希望它重定向到另一个页面并将所选值从下拉列表传递到这个新页面。
如果有人有想法,请帮助我。
在按钮点击事件上试试这个
string strddlValue=Convert.ToString(DropdownList1.SelectedValue); Response.Redirect("YourPage.aspx?Value=" + strddlValue);