473,403 Members | 2,270 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes and contribute your articles to a community of 473,403 developers and data experts.

How to use JavaScript in ASP.NET

Frinavale
9,735 Expert Mod 8TB
JavaScript in ASP.NET

Using JavaScript in ASP.NET pages can make your application seem to work faster and prevent unnecessary calls to the server. JavaScript can be used to perform client-side functionality in the user's browser without having to make calls back to the server; thus, saving resources.

The following example demonstrates how you can use an ASP.NET button to trigger a JavaScript call which modifies an ASP.NET TextBox.

Example

The following example will show you:
  • how to dynamically add JavaScript to your page
  • how to call the JavaScript function when the user clicks a button
  • how to either allow or prevent the button from posting back to the server


First of all, you will have to create an ASP.NET project. This example uses a MasterPage, so when you create your ASP.NET project, be sure to add a MasterPage to it, then add a Web Content Form (aspx page) to your project and be sure to select your MasterPage while adding the Content Form.

In your ASPX page (your Content Form) you need to add a TextBox. This TextBox will be used to display the text "hello world".

You will also need to add an ASP.NET Button. This ASP.NET Button will trigger a JavaScript function that asks the user if they want to insert the text "hello world!" into the ASP.NET TextBox using JavaScript code...we'll get to the JavaScript function in a minute.

Keep in mind that once the ASP.NET button and TextBoxes are rendered for the browser, they are simple html objects that can be modified through JavaScript.

Your page should look something like the following:
Expand|Select|Wrap|Line Numbers
  1. <%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="CTest.aspx.vb" Inherits="Test" title="Untitled Page" %>
  2.  
  3. <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
  4.  
  5.          <asp:TextBox id="MyTextbox" runat="server"></asp:Textbox>
  6.          <asp:Button id="HelloWorldButton" runat="server" text="Say Hi" />
  7.  
  8. </asp:Content>
  9.  

Please note that there are two click events for an ASP.NET button:
  • The JavaScript onclick event, which is executed in the browser before the page is submitted to the server
  • And the .NET OnClick event, which is executed on the server and handled by your VB.NET or C# code.

In order to call the JavaScript function we have to assign the button's JavaScript "onclick" event to call the method. There are two ways in which you can set the JavaScript "onclick" event: declaratively in your asp code using the OnClientClick property of the button; or dynamically using the button's "attributes" property in your VB.NET or C# code.

To declaratively provide a method to call during the JavaScript "onclick" event you would modify your button declaration and provide it with a value for the OnClientClick property:
Expand|Select|Wrap|Line Numbers
  1. <asp:Button id="HelloWorldButton" runat="server" text="Say Hi" OnClientClick="return DisplayHelloWorld();" />
Please note that if you set the OnClick property of an ASP.NET button, it will attempt to post back to the server and execute a method with the name that you provided:
Expand|Select|Wrap|Line Numbers
  1. <!-- The following will postback to the server and attempt to execute a method named DisplayHelloWorld -->
  2. <asp:Button id="HelloWorldButton" runat="server" text="Say Hi" OnClick="return DisplayHelloWorld();" />
In this example, I'm going to show you how to dynamically set the JavaScript "onclick" event using the button's "attributes" property. During the Page PeRender event (or if you like the Page Load event) you need to configure the button to call the JavaScript function when it is clicked.

The following code assigns the button's JavaScript "onclick" event to call a JavaScript method named "DisplayHelloWorld". It passes the method a parameter which is the ID that the TextBox has once it's rendered in the browser:

Expand|Select|Wrap|Line Numbers
  1. Private Sub Test_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender
  2.  
  3.       CreateHelloWorldJavaScript()
  4.  
  5.      ' Please note that here we are providing the DisplayHelloWorld function with 
  6.      ' the MyTextBox.ClientID.  The reason we use the ClientID is because when 
  7.      ' the TextBox is rendered in the browser it is given a special "ClientID" ...it's name
  8.      ' changes from "MyTextBox" to something like "ctl00_ContentPlaceHolder1_MyTextBox"
  9.      ' when using MasterPage.  Therefore, in order for the JavaScript to know what the
  10.      ' TextBox's id is in the page, we pass it the TextBox's ClientID
  11.      If IsPostBack = False Then
  12.        'note the "return", if you set a button to return False it will not postback to the server.
  13.          HelloWorldButton.Attributes.Add("onclick","return DisplayHelloWorld('" + MyTextbox.ClientID + "');")
  14.     End If
  15.  
  16. End Sub
  17.  
  18.  
Notice that there is a call to a Sub called "CreateHelloWorldJavaScript".

This sub is responsible for dynamically creating the JavaScript and register it in the page:
Expand|Select|Wrap|Line Numbers
  1. Private Sub CreateHelloWorldJavaScript()
  2.  
  3.   If Not Page.ClientScript.IsStartupScritRegistered("HelloWorldScript") Then
  4.      Dim script As New Text.StringBuilder
  5.      script.Append("function DisplayHelloWorld(textboxID)" + vblf)
  6.      script.Append("{" +vblf)
  7.      script.Append("     if(confirm("Do you want to use JavaScript code to display the text?")==true)" + vblf)
  8.      script.Append("     {     document.getElementById(textboxID).value = 'Hello World! From JavaScript!';"+ vblf)
  9.      script.Append("           return false;"+ vblf)
  10.      script.Append("     }" +vblf)
  11.      script.Append("     else"+ vblf)
  12.      script.Append("     {     return true;}"+ vblf)
  13.      script.Append("}" +vblf)
  14.  
  15.      Page.ClientScript.RegisterStartupScript(page.GetType,"HelloWorldScript",script.ToString())
  16.  
  17.   End If
  18. End Sub 
  19.  
The above function dynamically creates the JavaScript function using a StringBuilder to hold the code. Once the script has been created it uses the "Page.ClientScript.RegisterStartupScript" method to register the JavaScript with the page and make it available in the browser.

Now that the JavaScript is available in the browser, it can be executed when the button is clicked in the web browser because we have set the button to call it during the JavaScript "onclick" event.

The JavaScript function dynamically generated in the above code displays a confirm box which asks the user if they want to display the text using JavaScript code. If the user click "yes" then the JavaScript locates the TextBox, sets it's text to "Hello World! From JavaScript!", and returns false. If the user clicks "no" then the JavaScript function returns true which allows the page to post back to the server so that the server side code can be called.

It's important to note something that I skipped over quickly earlier.
In the PreRender event, when we are setting the JavaScript "onclick" event to call the JavaScript method, we are telling it return the value returned by the JavaScript "DisplayHelloWorld" method:
Expand|Select|Wrap|Line Numbers
  1.  HelloWorldButton.Attributes.Add("onclick","return DisplayHelloWorld('" + MyTextbox.ClientID + "');")
Now if the JavaScript method returns false, then the "onclick" event will return false and the postback to the server will be cancelled. If the JavaScript method returns true, then the "onclick" event will return true and the postback to the server will continue as normal. It is in this way that you can prevent unnecessary postbacks to the server from occurring.

Oh, there's one last thing to do: implement the server code that writes "Hello World" in the text box:
Expand|Select|Wrap|Line Numbers
  1. Protected Sub HelloWorldButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles HelloWorldButton.Click
  2.     MyTextBox.Text = "Hello World! From the server!"     
  3. End Sub
This method will only be executed if the button is permitted to postback to the server.

Recap
  • You have a .NET button that will call a JavaScript function named "DisplayHelloWorld" to display the text "Hello World!" in a .NET TextBox.
    The DisplayHelloWorld function takes one parameter: the ID of the .NET TextBox. The TextBox ID that is passed into the DisplayHelloWorld function is the TextBox's ClientID. The reason we use the ClientID is because (when using MasterPages or Web User Controls) the .NET TextBox is given a special ID when it is rendered in the browser that does not match the .NET variable name.
  • You have assigned the JavaScript call to the Button so that when the button's (JavaScript) "onclick" event is fired, it calls the JavaScript Function "DisplayHelloWorld".
  • The "DisplayHelloWorld" JavaScript function has been registered in the page
  • The JavaScript function asks the user if they want to display "Hello World" from the JavaScript code or from the Server Code. If the user wants to display the text from JavaScript, the function inserts the text "Hello World! From JavaScript" into the TextBox by retrieving the TextBox from the page using the document.getElementById() function. Otherwise, the function returns true, allowing the postback to occur.
Jul 1 '08 #1
2 37648
Thanks for the answer.
Nov 23 '09 #2
really lovely example..i was confused b4
Nov 25 '10 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.