我正在调试,我得到了上面列出的奇怪错误。这很奇怪,因为我的Dropdownlist被称为DropDownlist1。当我将它设置为与之前相同时,调试器告诉我它无法将其转换为字符串。
所以这是我的C#,问题在于。
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Gridsource.ConnectionString = "Data Source=CATALOGSERVER;Initial Catalog=UACOrders;Persist Security Info=True;User ID=Catalog;Password=pass";
Gridsource.SelectCommandType = SqlDataSourceCommandType.StoredProcedure;
Gridsource.SelectCommand = "GetOrderHistory";
Gridsource.DataSourceMode = SqlDataSourceMode.DataSet;
GridView1.DataSource = Gridsource;
ControlParameter cp = new ControlParameter();
cp.ControlID = DropDownList1.ClientID;
cp.Name = "Company";
cp.PropertyName = "SelectedValue";
cp.Type = System.TypeCode.String;
Gridsource.SelectParameters.Add(cp);
Gridsource.Page = this;
this.Controls.Add(Gridsource);
GridView1.DataBind();
updatepanel1.Update();
}
这里有一小部分涉及的asp.net
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<div id="contentarea">
<asp:ScriptManager runat="server"></asp:ScriptManager>
<asp:UpdatePanel runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional" ID="updatepanel1">
<ContentTemplate>
<div>
<asp:Label Text="Company: " runat="server"></asp:Label>
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="company" DataTextField="COMPANY" DataValueField="COMPANY"
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"
AutoPostBack="true" >
</asp:DropDownList>
<asp:SqlDataSource ID="company"
runat="server" ConnectionString="<%$ ConnectionStrings:UACOrdersConnectionString %>"
SelectCommand="SELECT [Customer] AS [COMPANY] FROM [Accounts] ORDER BY [Customer]">
</asp:SqlDataSource>
<asp:SqlDataSource ID="Gridsource" runat="server"></asp:SqlDataSource>
奇怪的是,我可以通常在asp.net代码中使用这种东西。但我似乎无法让它在这个特定网页所需的C#代码隐藏中工作。 所以,我需要找出cp.ControlID shoudld真正等于什么。
具体的异常是“用户代码未处理InvalidOperationException”。 “无法在ControlParameter'Company'中找到控件'DropDownList1'。”
VS将异常放在第39行
GridView1.DataBind();
如果您需要查看更多代码,请发表评论,我会发布更多内容。
答案 0 :(得分:1)
根据您问题中的更新代码,我可以看到问题是DropDownList和SqlDataSource(此ControlParameter所属的)不在同一个命名容器中。你有几个选择:
像这样:
protected void Page_Init(object sender, EventArgs e)
{
Page.Controls.Add(Gridsource);
}
答案 1 :(得分:0)
Alexander:你为什么要提供 cp.ControlID =“DropDownList1” ;, DropDownList1是DropDownList的一个对象,所以你不能把这个名字作为字符串传递,而 cp.Type = System.TypeCode.String; 是字符串类型,因此 cp 不能包含对象。
如果您想将控件添加到 cp ,则 cp.ControlId = DropDownList1.ClientID;