473,765 Members | 2,121 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to use JavaScript in ASP.NET

Frinavale
9,735 Recognized Expert Moderator Expert
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 "DisplayHelloWo rld". 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 "CreateHelloWor ldJavaScript".

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.ClientScr ipt.RegisterSta rtupScript" 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 "DisplayHelloWo rld" 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 "DisplayHelloWo rld" to display the text "Hello World!" in a .NET TextBox.
    The DisplayHelloWor ld function takes one parameter: the ID of the .NET TextBox. The TextBox ID that is passed into the DisplayHelloWor ld 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 "DisplayHelloWo rld".
  • The "DisplayHelloWo rld" 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.getEle mentById() function. Otherwise, the function returns true, allowing the postback to occur.
Jul 1 '08 #1
2 37693
qwedster
24 New Member
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
9398
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9832
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8831
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7375
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5275
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5419
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3924
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2805
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.