Thursday, 11 July 2013

Download Grid Data to excel,Csv and Txt (Tab Delimited File) avoiding Paging

Here I will explain how to export grid view data to excel, CSV, Text ( Tab Delimited File ) documnets using asp.net without paging problem so in one gridview that has filled with Some details, now we need to export gridview data to user selected document based on selection. To implement this functionality...

Wednesday, 24 April 2013

Blocking HTML Tags OR Allow only one HTML Tag for Text box using java script

Blocking HTML Tags OR Allow only one HTML Tag for Text box using java script Script :- <script type="text/javascript">         function ScriptTagsValidation(e, objCtrl) {             var key = window.event ? e.keyCode : e.which;             var keychar = String.fromCharCode(key);        ...