1.What are the basic selectors in jQuery?
Following are the basic selectors in jQuery:
A)Element ID
A ID available the DOM Using ID we can axxess the control in JQuery.
using JQuery
$("#EmpId")
B)CSS Name
A class name will be available in the DOM usinf class name we can access this in JQuery.
using JQuery
$(".Menu")
C)Tag...
Thursday, August 23, 2018
Monday, August 20, 2018
Free source code Version Control Systems
SVN
Subversion is the most used version control used in worldwide. Most open-source projects use Subversion as a repository because other larger projects, such as SourceForge, Apache, Python, Ruby and many others, use it as well.Because of its popularity, there are many versions and IDEs available.
Git
Git is the new fast-rising version control systems....
Sunday, August 19, 2018
Required Field Validator not Working For DropDownList asp.net
You need to set the value as 0 in the InitialValue of validator or change the value of first item of DropDown.
cssclass="required" display="dynamic" errormessage="*" setfocusonerror="true"
InitialValue="0">...
Wednesday, August 15, 2018
State Management techniques In ASP.NET MVC
State Management In ASP.NET MVC.
We all know that HTTP is a state less protocol. Hence, If we want to pass data from one page to another page or even on multiple
visits of the same page, then we need to use the State management techniques to store user specific data.
Here, i am going discuss various techniques to pass the data from a Controller...
How to Upload Files in ASP.NET MVC
Upload Files In ASP.NET MVC
Here i am going to explain File Upload example in ASP.Net MVC
Below code is quite limited and simple functionality for single file upload, and it will work in any browser.
Before uploading the file, we will check whether Directory exists if not exist then the Directory will be created.
View
View consists of...
JQ GRID in ASP.NET MVC 4 using Razor
JQ GRID Using MVC with Razor View Engine in ASP.NET MVC 4
Friends,Here i am going to explain how to use jqgrid in asp.net mvc4 with rzor view engine.JQGrid is one of the most flexible and stable
gird you can find in the current tech market. It’s free to use. Here i am going to write basic step to do where data will come from
database to show...