This is Part 1 of the basics of JavaScript series. This article explains some of the basic concepts of JavaScript.

The following are the topics that we will discuss today.

  • Introduction.
  • Use of JavaScript.
  • Need of both client-side and server-side validation.
  • Advantages of JavaScript.

The following are the two types of web pages:

  • Static Web Pages.
  • Dynamic Web Pages.

HTML is used for creating static web pages. These pages are delivered to the users exactly as they are stored and do not respond to user inputs.

On the other hand, there are two types of scripting languages that can be used to create dynamic web pages.

Client-side: JavaScript and Visual Basic Script.

Server-side: PHP, Perl.

Both of these scripting languages can be used to create dynamic web pages. The client-side scripts are executed by the web browser, in other words at the client-side whereas the server-side scripts are executed by the web server.

Use of JavaScript

In SQL Server, I have a table with the following columns.



Query used

  1. CREATE DATABASE db_BasicsOfJs  
  2. USE db_BasicsOfJs  
  1. CREATE TABLE tblRecords  
  2. (  
  3. Id INT IDENTITY PRIMARY KEY,  
  4. Name NVARCHAR(30),  
  5. Email NVARCHAR(100)  
  6. );  
  1. SELECT * FROM tblRecords  
Open Visual Studio and create an empty MVC web application.



Click OK.

Add ADO.NET Entity Model





Click OK.



Click Next.

Add new connection



Click OK.



Click Next.



Select the table and click Finish.



Add a controller



Click Add.



Click Add.

Now in the Models folder, add a class file in which we will customize the auto-generated properties.



Add adding the class file, mark the class as partial and change the class name to tblRecord.

  1. using System;  
  2.   
  3. namespace BasicsOfJavaScriptPart1.Models   
  4. {  
  5.     public partial class tblRecord   
  6.     {  
  7.   
  8.     }  
  9. }  
  10. Write the following in the tblRecords class.  
  11. using System;  
  12. using System.ComponentModel.DataAnnotations;  
  13.   
  14. namespace BasicsOfJavaScriptPart1.Models   
  15. {  
  16.     //use MetadataType attribute to pass the Metadata in tblRecord class  
  17.     [MetadataType(typeof(RecordsMetaData))]  
  18.     public partial class tblRecord   
  19.     {  
  20.   
  21.     }  
  22.   
  23.     //create a MetaData class which will be used to customize the auto-generated properties of tblRecord class  
  24.     class RecordsMetaData   
  25.     {  
  26.         //mark both the properties as required  
  27.         [Required]  
  28.         public string Name   
  29.         {  
  30.             get;  
  31.             set;  
  32.         }  
  33.         [Required]  
  34.         public string Email   
  35.         {  
  36.             get;  
  37.             set;  
  38.         }  
  39.     }  
  40. }  
Build the project and run

Now the requirement of this application is to capture the data and store it in the database table.



Click on the Create New link.



Click the Create button.



Look at the preceding error message we got. We marked both of these fields as required so we are getting a validation message.

On the other hand, if we pass valid data then the records will be stored in the database table.



But at the moment we don't have JavaScript anywhere in our web application.



Here we are validating our form on the server-side. So every time we click the create button, the request is sent to the server over the network, the server processes it and notices that the form fields are blank then it sends the response message back to the client.

Now let's say for some reason, the web server is busy and the user must wait a few seconds to get the response message from the server.

Let's include some latency in our application by making the HttpPost create action method sleep for 5 seconds.
  1. public ActionResult Create([Bind(Include = "Id,Name,Email")] tblRecord tblRecord)   
  2. {  
  3. System.Threading.Thread.Sleep(5000);  
  4. }  
Run the application and navigate to the create view.



Click the create button.

Now when the user clicks the create button, he/she must wait for at least 5 seconds before the server sends back the response.

Validation check using JavaScript

We can do the validation check without posting the request to the server. Don't you think it would be much better and the application would be much more responsive?

Let's see how to validate the user input using JavaScript.

From the introduction we know that JavaScript is executed by the client browser. So, whenever we click the create button, the browser will execute the referred JavaScript function.

In the Create.cshtml write the following JavaScript function:
  1. < script type = "text/javascript" > function myfunction()   
  2. {  
  3.     var Name = document.getElementById("Name").value;  
  4.     var Email = document.getElementById("Email").value;  
  5.     var isTrue = true;  
  6.   
  7.     if (Name == "")  
  8.     {  
  9.         document.getElementById("nameError").innerHTML = "Name field is required";  
  10.         isTrue = false;  
  11.     } else {  
  12.         document.getElementById("nameError").innerHTML = "";  
  13.     }  
  14.   
  15.     if (Email == "")   
  16.     {  
  17.         document.getElementById("emailError").innerHTML = "Email field is required";  
  18.         isTrue = false;  
  19.     } else {  
  20.         document.getElementById("emailError").innerHTML = "";  
  21.     }  
  22.     return isTrue;  
  23. } < /script>
Pass the function name to the submit button as in the following:
  1. <input type="submit" value="Create" class="btn btn-default" onclick="return myfunction()" /> 


So, now the form validation is happening on the client-side.

The following  describes why we need both Client-side and Server-side validation :
  • Client-side validation can be easily bypassed by disabling JavaScript on a client browser and if JavaScript is disabled and we don't have server-side validation, there could be a chance of storing invalid data or there could be even security vulnerabilities.
  • Client-side validation provides a better user experience since it reduces the unnecessary round trips between the client and the server.
  • To prevent the form from becoming vulnerable to the tools like Fiddler we still want to validate the form on the server-side before saving it. So, server-side validation should always be there even if we have client-side validation or not.

The following are the advantages of using JavaScript:

  • JavaScript can be used to validate form fields, such as checking for blank fields before submitting the form to the server.
  • With JavaScript, partial page updates are possible; that is commonly known as AJAX.
  • JavaScript can be used to handle events.
  • It can be used to gather browser information such as name and version.

Summary

In in this article, we learned about some of the basic functionality of JavaScript.

I hope you like it.

Thank you.

Next Recommended Readings