Is there a way to do this.
If it helps this is how it renders on the page
<textarea id="ContentPlaceHolder1_TextBox3" cols="20" rows="2" name="ctl00$ContentPlaceHolder1$TextBox3"/>
Is there a way to call a function when the textbox's text is changed. I want to replace ("!") with (".").
Thanks in advance!
-Yo!
EDIT
if it helps here is the vb equivalent:
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
TextBox1.Text = TextBox1.Text.Replace("!", ".")
End Sub
This post has been edited by Yo!: 12 November 2011 - 07:46 PM

New Topic/Question
Reply


MultiQuote




|