如果在 ASP 页面中创建下拉列表和数据集(基于存储过程),则使用基于会话的参数。
当会话变量设置为在过程中返回结果databind()
并被调用的值时,不应该填充列表吗?
或者还有其他事情要做吗?
我正在尝试类似的事情,dataset.select()
但想知道这是怎么发生的。
这一切都在页面加载中。如果我错过了一些明显的东西,请查看代码。
注意:我在 ASPx 页面而不是在代码隐藏中创建数据源的原因是因为我将创建很多数据源,这样会更快,但也许这不是一个好方法。
ASP 是
<asp:DropDownList ID="ddClinic" runat="server"OnSelectedIndexChanged="
ddClinic_SelectedIndexChanged" AppendDataBoundItems="True" DataSourceID="dsClinics"
DataTextField="ClinicName" DataValueField="ClinicID" AutoPostBack="True">
<asp:ListItem Value="0">Select One</asp:ListItem>
</asp:DropDownList>
<asp:SqlDataSource ID="dsClinics" runat="server" ConnectionString="
<$ConnectionStrings:coPC3PaymentConnectionString %>" SelectCommand="GetClinicsForUser"
SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:SessionParameter DbType="Int32" Name="userID" SessionField="Userid"
Type="Int32" />
<asp:ControlParameter ControlID="LbMsg.Text" DbType="String" Direction="Output"
Name="ErrorMsg" PropertyName="Text" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
那么,在 Codebehind C# 中,这不应该让它填满吗?(假设参数在 SP 中返回数据?
Session["User"] = PC3User;
Session["MultiClinics"] = 1;
ddClinic.DataBind();
同样,对于愚蠢的问题感到抱歉,但我发现的所有示例都是在代码隐藏中创建的数据源。有必要吗?