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...
Thursday, 11 July 2013
Wednesday, 24 April 2013
Blocking HTML Tags OR Allow only one HTML Tag for Text box using java script
By Unknown at 14:07
No comments
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);
...