我正在尝试在asp.net中编写依赖的下拉查询。但它不起作用请帮助我
如何在asp.net中编写依赖的下拉SQL查询?
select *
from Taluk
where Districtid = 'Districtid'
答案 0 :(得分:3)
您可以将查询更改为
select * from Taluk where Districtid=@Idof dropdown
或者您可以参考此链接获取更多信息
http://www.aspsnippets.com/Articles/Creating-Cascading-DropDownLists-in-ASP.Net.aspx