asp.net と javascript の投稿と取得について質問があります。データベースに接続された asp.net のドロップダウン リストから値を取得する方法は知っていますが、asp.net と asp.net に物を送り返す方法は知っています。 ..
<div id="map" style="width: 500px; height: 500px">
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:RFIDConnectionString %>"
SelectCommand="SELECT neighborhood_name FROM [Neighborhood]"></asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:RFIDConnectionString %>"
SelectCommand="SELECT street_name FROM [Street]"></asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource3" runat="server"
ConnectionString="<%$ ConnectionStrings:RFIDConnectionString %>"
SelectCommand="select * from Street,neighborhood where Street_status='high' and street.neighborhood_id=neighborhood.neighborhood_id"></asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource4" runat="server"
ConnectionString="<%$ ConnectionStrings:RFIDConnectionString %>"
SelectCommand="SELECT neighborhood_name FROM [Neighborhood]"></asp:SqlDataSource>
</div>