Click here to Skip to main content
15,911,030 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow do we will send sql database to server through FTP Pin
somasekhara77726-Jan-09 8:14
somasekhara77726-Jan-09 8:14 
AnswerRe: how do we will send sql database to server through FTP Pin
Colin Angus Mackay26-Jan-09 11:16
Colin Angus Mackay26-Jan-09 11:16 
QuestionVideo conferencing Pin
sana1726-Jan-09 7:53
sana1726-Jan-09 7:53 
QuestionCreating a ActiveX control Pin
dptalt26-Jan-09 7:19
dptalt26-Jan-09 7:19 
AnswerRe: Creating a ActiveX control Pin
CooperWu26-Jan-09 15:43
CooperWu26-Jan-09 15:43 
QuestionRe: Creating a ActiveX control Pin
dptalt27-Jan-09 2:30
dptalt27-Jan-09 2:30 
Questiondisabling back button, Pin
Hema Bairavan26-Jan-09 3:16
Hema Bairavan26-Jan-09 3:16 
AnswerRe: disabling back button, Pin
David Mujica26-Jan-09 3:31
David Mujica26-Jan-09 3:31 
You may have to solve this with some Javascript, so that you can trap the user when they press the Backspace Key on the keyboard.

function fOnKeypress() {

  try {
    
	var charCode = window.event.keyCode;
	
	if (charCode == 13) {
      window.event.keyCode= 9;
	}
  }
  catch (er) {
		    //alert('fOnKeypress ' + er);
  }
}


You will need to load this in the BODY OnLoad event. I'm usign something like this:
var objForm= document.getElementById("aspnetForm");     // There should be a better way to get the name of the form instead of hard-coding it like this.
   objForm.onkeydown=fOnKeypress;

AnswerRe: disabling back button, Pin
Frauke26-Jan-09 3:55
Frauke26-Jan-09 3:55 
AnswerRe: disabling back button, Pin
Sundar_R26-Jan-09 18:47
Sundar_R26-Jan-09 18:47 
GeneralRe: disabling back button, Pin
Hema Bairavan26-Jan-09 20:03
Hema Bairavan26-Jan-09 20:03 
GeneralRe: disabling back button, Pin
Sundar_R26-Jan-09 20:21
Sundar_R26-Jan-09 20:21 
QuestionHow the UpdateProgress controls should not fire when the list index is -1? Pin
meeram39526-Jan-09 2:13
meeram39526-Jan-09 2:13 
AnswerRe: How the UpdateProgress controls should not fire when the list index is -1? Pin
CooperWu26-Jan-09 15:48
CooperWu26-Jan-09 15:48 
AnswerRe: How the UpdateProgress controls should not fire when the list index is -1? Pin
Sundar_R26-Jan-09 19:01
Sundar_R26-Jan-09 19:01 
Questionnumericupdownextender in gridview [modified] Pin
bryanvanritter26-Jan-09 1:31
bryanvanritter26-Jan-09 1:31 
AnswerRe: numericupdownextender in gridview Pin
Manas Bhardwaj26-Jan-09 2:07
professionalManas Bhardwaj26-Jan-09 2:07 
GeneralRe: numericupdownextender in gridview Pin
bryanvanritter27-Jan-09 4:40
bryanvanritter27-Jan-09 4:40 
AnswerRe: numericupdownextender in gridview Pin
Manas Bhardwaj26-Jan-09 2:08
professionalManas Bhardwaj26-Jan-09 2:08 
GeneralRe: numericupdownextender in gridview Pin
bryanvanritter27-Jan-09 4:39
bryanvanritter27-Jan-09 4:39 
Questionhow to delete a line from a text file. Pin
Hema Bairavan26-Jan-09 1:15
Hema Bairavan26-Jan-09 1:15 
AnswerRe: how to delete a line from a text file. Pin
Manas Bhardwaj26-Jan-09 1:58
professionalManas Bhardwaj26-Jan-09 1:58 
QuestionWhen i convert to .net 3.5 give me Property evaluation failed Pin
ahmedhassan9625-Jan-09 23:50
ahmedhassan9625-Jan-09 23:50 
Question[Message Deleted] Pin
Member 299896925-Jan-09 23:45
Member 299896925-Jan-09 23:45 
AnswerRe: How use vb6 dll in asp.net using c#.net Pin
Vimalsoft(Pty) Ltd26-Jan-09 0:10
professionalVimalsoft(Pty) Ltd26-Jan-09 0:10 

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.