Here is the test case for the change. I have to modify
NUnitAspTestPages/AspTester/TextBoxTestPage for the test to
work, but I couldn't generate a patch for whatever reason.
Here are the changes made to TextBoxTestPage:
- Set AutoPostBack to true for textBox and multiline
- Replaced postback button with postback TextBox
- Set AutoPostBack to true for postback
- Added this line of code to InitializeComponent()
this.postback.TextChanged += new
System.EventHandler(this.postBack_TextChanged);
- Added this function
private void postBack_TextChanged(object sender,
EventArgs e)
{
this.postback.Text = "postBack";
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=1206601
Here is the test case for the change. I have to modify
NUnitAspTestPages/AspTester/TextBoxTestPage for the test to
work, but I couldn't generate a patch for whatever reason.
Here are the changes made to TextBoxTestPage:
- Set AutoPostBack to true for textBox and multiline
- Replaced postback button with postback TextBox
- Set AutoPostBack to true for postback
- Added this line of code to InitializeComponent()
this.postback.TextChanged += new
System.EventHandler(this.postBack_TextChanged);
- Added this function
private void postBack_TextChanged(object sender,
EventArgs e)
{
this.postback.Text = "postBack";
}