Pages

Subscribe:

Ads 468x60px

Wednesday, 7 September 2011

Message window using VB.NET in ajax

This article is used to show message window in vb.net using ajax. The problem comes when you use vb.net using ajax enables website.. This concept is easy to use in C# but it is not easy in vb.net. I am writing two line code for this message window.

Private
 Sub DisplayClientError(ByVal errorDesc As String)Dim script As String = "alert('" + errorDesc + "');"ScriptManager.RegisterStartupScript(MeGetType(Page), "UserSecurity", script, True)End Sub 'DisplayClientError write this code on click event where you want show message windowProtected Sub ClickButton_Click(ByVal sender As ObjectByVal e As System.EventArgs) Handles ClickButton.ClickIf TextBox1.Text = "" ThenDisplayClientError("Enter some text in text box")End IfEnd Sub
Screen Shot

1.gif

0 comments:

Post a Comment