Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to set properties in Code Behind?
Message
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
Miscellaneous
Thread ID:
01369896
Message ID:
01369897
Views:
6
>What is the syntax to set property of AutoPostBack to "True" and specify OnTextChanged in the code behind? That is, I can set these properties in the .ASPX as following:
>
>
><asp:textbox id="MyTextBox" Runat="server" AutoPostBack="True" OnTextChanged="MyTextBox_TextChanged"</asp:textbox>
>
>
>But instead of hard coding it in the ASPX side I want to set (depending on user preference) these values in Page_Load method.
>
>Thank you in advance for your help.

UPDATE: I found the answer.
MyTextBox.Attributes.Add("OnTextChanged", "MyTextBox_TextChanged()");
MyTextBox.AutoPostBack = true;
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Reply
Map
View

Click here to load this message in the networking platform