我已经知道如何做到这一点,但我意识到控件“ControlParameter”没有“Id”属性(这是JS所需的)。是否有不同的方法使用JavaScript来更改“DefaultValue”属性而无需使用“Id”属性?
以下是我一直在使用的JavaScript和asp.net代码:
JavaScript的:
function ChangePropertyValue(propertyName, newpropertyValue) {
var ControlParameter = document.getElementById(propertyName)
ControlParameter.DefaultValue = newpropertyValue
}
asp.net:
<asp:Button ID="btntest" runat="server" Text="try" OnClick="ChangePropertyValue(??, 17)"/>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:DatabaseConnectionString1 %>"
SelectCommand="SELECT [Id], [ContentTitle], [Content] FROM [Table1] WHERE ([Id] = @Id)">
<SelectParameters>
<asp:ControlParameter ControlID="ListView1" DefaultValue="16" Name="Id"
PropertyName="SelectedValue" Type="Int32"/>
</SelectParameters>
</asp:SqlDataSource>
答案 0 :(得分:1)
您无法访问ControlParameter
客户端。 ControlParameters
用于绑定Control属性服务器端的值,它们不会呈现给客户端。但是,您可以在代码隐藏中以编程方式设置ControlParameter
的默认值。
SqlDataSource1.SelectParameters["id"].DefaultValue = "value";