Multiple Radiobutton Validation by using Group-Name

Multiple Radiobutton Validation by using Group-Name

This is a simple way to validate a group of RadioButton in a page using Java Script. If you want to validate multiple radio buttons categorised by their groupname attribute. Lets assume there are 6 radio buttons belongs to 3 different groups. Its a simple JS validation for multiple groups and u can show the error message also at a time those fileds which are not filled thats why a span tag is provided der. Make sure that only group names should be in the format as in this example likegroup1....group10 and span names like span1,span2....span15. Paste the code in the Default.aspx
Your Gender :
Do u play Cricket ?
Use of Custom TextEditor in Asp.net

Use of Custom TextEditor in Asp.net

1 . Add reference to your website using by CKEditor DLL Download Dll CKEditor DLL 2. Register CKEditor on Page < %@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %> 3. After That Add CK Editor Folder in Your Website or Solution Download Folder CKEditor
URL Rewriting in ASP.NET

URL Rewriting in ASP.NET

Dynamic Url ReWriting ShowAllData.aspx-------------------------------------
ShowAllData.aspx.cs---------------------------------- protected void Page_Load(object sender, EventArgs e) { if(IsPostBack==false) { dtlstproducts.DataSource = GetProductDataTable(); dtlstproducts.DataBind(); //Response.Redirect("ShowAllData"); } }
Disable cut, copy and paste in textbox using jquery, javascript

Disable cut, copy and paste in textbox using jquery, javascript

Disable cut, copy & paste using Javascript When we don't want to display any message on cut, copy & paste When we want to display an alert message on copy, paste and cut