我有一個下拉列表,它填充了來自SQL數據庫的數據。這是我可能在aspx文件中的。如何將aspx文件中的代碼(儘可能多)移至aspx.cs文件以實現代碼隱藏技術? 我的意思是至少SELECT部分。 謝謝。如何將此示例aspx代碼移至aspx.cs(以實現後面的代碼)?
<asp:DropDownList ID="DropDownList1" ... runat="server"/>
...
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Pubs %>"
SelectCommand="SELECT [au_id], [au_lname], [au_fname], [state] FROM [authors] WHERE [state] = @state">
<SelectParameters>
<asp:ControlParameter Name="state" ControlID="DropDownList1" PropertyName="SelectedValue" />
</SelectParameters>
</asp:SqlDataSource>