Return to Snippet

Revision: 35562
at November 10, 2010 08:40 by derebus


Updated Code
'So the TextBox code will look like this.

<asp:TextBox ID="txtDate" runat="server" OnTextChanged="txtDate_TextChanged" AutoPostBack="True"></asp:TextBox>

'and your code behind will look something like this (converted from C# but should be right)  

Protected Sub txtDate_TextChanged(ByVal sender As Object, ByVal e As EventArgs) 
    'Do your stuff 
End Sub

Revision: 35561
at November 10, 2010 08:39 by derebus


Updated Code
'So the TextBox code will look like this.

<asp:TextBox ID="txtDate" runat="server" OnTextChanged="txtDate_TextChanged" AutoPostBack="True"></asp:TextBox>

'and your code behind will look something like this (converted from C# but should be right)  

 

Protected Sub txtDate_TextChanged(ByVal sender As Object, ByVal e As EventArgs) 
    'Do your stuff 
End Sub

Revision: 35560
at November 10, 2010 08:39 by derebus


Initial Code
'So the TextBox code will look like this.

<asp:TextBox ID="txtDate" runat="server" OnTextChanged="txtDate_TextChanged" AutoPostBack="True"></asp:TextBox>

'and your code behind will look something like this (converted from C# but 'should be right)  

 

Protected Sub txtDate_TextChanged(ByVal sender As Object, ByVal e As EventArgs) 
    'Do your stuff 
End Sub

Initial URL
http://forums.asp.net/p/1335624/2925135.aspx

Initial Description
Util para lanzar un procedimiento o una función al elegir una fecha en un ajax calendar

Initial Title
Ajax Calendar Extender - lanzar  función al elegir una fecha

Initial Tags
date

Initial Language
VB.NET