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
Export Data to QIF Format using Asp.net

Export Data to QIF Format using Asp.net

we required QifApi.dll for exporting to QIF format , the below code is exporting to basic transaction format Download Dll protected void btnQIF_Click(object sender, EventArgs e) { Response.ContentType = "application/qif"; Response.AddHeader("content-disposition", "attachment;filename=PurchaseOrderDetails.qif"); Response.Cache.SetCacheability(HttpCacheability.NoCache); StringWriter sw = new StringWriter(); HtmlTextWriter hw = new HtmlTextWriter(sw); GridView gridview1 = new GridView(); gridview1.AllowPaging = false; //This GetOrders method returns all records from Database which Contain Various Columns DataSet ds = objOrderRegistratonController.GetOrders(); DataView view = new DataView(ds.Tables[0]);