Click here to Skip to main content
15,917,608 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: showing world map Pin
hemant.kaushal29-Aug-08 3:21
hemant.kaushal29-Aug-08 3:21 
GeneralRe: showing world map Pin
Abhishek Sur29-Aug-08 7:35
professionalAbhishek Sur29-Aug-08 7:35 
GeneralRe: showing world map Pin
Gamzun1-Sep-08 21:20
Gamzun1-Sep-08 21:20 
QuestionCannot apply indexing with [] to an expression of type 'System.Web.UI.WebControls.ListViewItem' Pin
Member 387988129-Aug-08 2:32
Member 387988129-Aug-08 2:32 
Questionblock copy/paste for textbox in firefox Pin
ashok@techxygen29-Aug-08 2:17
ashok@techxygen29-Aug-08 2:17 
AnswerRe: block copy/paste for textbox in firefox Pin
MoustafaS29-Aug-08 2:38
MoustafaS29-Aug-08 2:38 
GeneralRe: block copy/paste for textbox in firefox Pin
ashok@techxygen29-Aug-08 2:44
ashok@techxygen29-Aug-08 2:44 
AnswerRe: block copy/paste for textbox in firefox Pin
eyeseetee29-Aug-08 2:45
eyeseetee29-Aug-08 2:45 
use this javascript:

function noCopyKey(e) {
var forbiddenKeys = new Array('c','x');
var keyCode = (e.keyCode) ? e.keyCode : e.which;
var isCtrl;

if(window.event)
isCtrl = e.ctrlKey
else
isCtrl = (window.Event) ? ((e.modifiers & Event.CTRL_MASK) == Event.CTRL_MASK) : false;

if(isCtrl) {
for(i = 0; i < forbiddenKeys.length; i++) {
if(forbiddenKeys[i] == String.fromCharCode(keyCode).toLowerCase()) {
alert('This action has been restricted, for more information contact MJM');

return false;
}
}
}
return true;
}
GeneralRe: block copy/paste for textbox in firefox Pin
ashok@techxygen29-Aug-08 2:52
ashok@techxygen29-Aug-08 2:52 
GeneralRe: block copy/paste for textbox in firefox Pin
eyeseetee29-Aug-08 3:10
eyeseetee29-Aug-08 3:10 
Questiongetting finish time of flash file Pin
needhi_p29-Aug-08 1:19
needhi_p29-Aug-08 1:19 
AnswerRe: getting finish time of flash file Pin
Manas Bhardwaj29-Aug-08 1:26
professionalManas Bhardwaj29-Aug-08 1:26 
AnswerRe: getting finish time of flash file Pin
The Web Developer29-Aug-08 1:41
The Web Developer29-Aug-08 1:41 
AnswerRe: getting finish time of flash file Pin
~V~29-Aug-08 2:09
~V~29-Aug-08 2:09 
AnswerRe: getting finish time of flash file Pin
Perspx29-Aug-08 2:10
Perspx29-Aug-08 2:10 
QuestionIs there any way to update global resource value Pin
mithun narayanan29-Aug-08 1:10
mithun narayanan29-Aug-08 1:10 
Questionhow to getObject of usercontrol class in app_code---&gt;XYX.Cs file Pin
Hemant_ec4829-Aug-08 1:00
Hemant_ec4829-Aug-08 1:00 
Questionwhile uploading Photo,not seen in IE7 but seen in IE6 Pin
Learning IT29-Aug-08 0:59
Learning IT29-Aug-08 0:59 
AnswerRe: while uploading Photo,not seen in IE7 but seen in IE6 Pin
The Web Developer29-Aug-08 1:42
The Web Developer29-Aug-08 1:42 
GeneralRe: while uploading Photo,not seen in IE7 but seen in IE6 Pin
Learning IT29-Aug-08 22:31
Learning IT29-Aug-08 22:31 
QuestionWeb Service URL rewriting Pin
Tiger45629-Aug-08 0:42
Tiger45629-Aug-08 0:42 
Questionstoring datetime in sql from asp.net Pin
Learning IT29-Aug-08 0:07
Learning IT29-Aug-08 0:07 
AnswerRe: storing datetime in sql from asp.net Pin
Manas Bhardwaj29-Aug-08 0:35
professionalManas Bhardwaj29-Aug-08 0:35 
GeneralRe: storing datetime in sql from asp.net Pin
Learning IT29-Aug-08 0:46
Learning IT29-Aug-08 0:46 
AnswerRe: storing datetime in sql from asp.net Pin
Learning IT29-Aug-08 1:14
Learning IT29-Aug-08 1:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.