text changed event
-
Explain your ques for good solution // Just double click the control and use it
-
Explain your ques for good solution // Just double click the control and use it
-
hi Gayatri you can use it by changing autopostback property to true.
wasim khan
-
sir my code protected void txtClientCode_TextChanged(object sender, EventArgs e) { if (!IsPostBack) { btnTextChanged.Visible = true; } } but its not run what i forgot?
Gayatri
It will not(It will fire only in next post back). You might use javascript.
**$**herin Iranimose
-
hi Gayatri you can use it by changing autopostback property to true.
wasim khan
-
It will not(It will fire only in next post back). You might use javascript.
**$**herin Iranimose
-
if you want to use via javascript use this onkeydown="return validateInt(this.value) and define a function name validateInt(str) else on server side code you have to wait for postback after this textchange event will accure
Sunny
-
protected void TxtFilePath_TextChanged(object sender, EventArgs e) { ur code here }
Sunny
-
HI gayatri u can use it when you change autopostback to true; then in textchange event do some action like change the label text. after that build your project. when you write some think inside your textbox and press tab u will see apost back and end your event will be fire
wasim khan