Click here to Skip to main content
16,005,491 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: PeachTree / ASP.NET Pin
Vasudevan Deepak Kumar28-Jan-08 2:22
Vasudevan Deepak Kumar28-Jan-08 2:22 
QuestionHow to convert PDF files to HTML , using DotNet for web/desk top applications Pin
Sophia Rekhi27-Jan-08 23:19
Sophia Rekhi27-Jan-08 23:19 
GeneralASCII value Pin
yogeshpan27-Jan-08 23:15
yogeshpan27-Jan-08 23:15 
AnswerRe: ASCII value Pin
newc127-Jan-08 23:37
newc127-Jan-08 23:37 
GeneralPressing Enter Key Throwing on the Home Page Pin
.NET- India 27-Jan-08 23:11
.NET- India 27-Jan-08 23:11 
GeneralRe: Pressing Enter Key Throwing on the Home Page Pin
yogeshpan27-Jan-08 23:16
yogeshpan27-Jan-08 23:16 
GeneralRe: Pressing Enter Key Throwing on the Home Page Pin
Vasudevan Deepak Kumar28-Jan-08 0:09
Vasudevan Deepak Kumar28-Jan-08 0:09 
AnswerRe: Pressing Enter Key Throwing on the Home Page Pin
newc128-Jan-08 0:42
newc128-Jan-08 0:42 
The following JS should perform the above operation:

function checkEnter(e) {<br />
  var characterCode;<br />
<br />
  if ( e && e.which ) {<br />
    e = e;<br />
    characterCode = e.which;<br />
  }<br />
  else {<br />
    e = event;<br />
    characterCode = e.keyCode;<br />
  }<br />
<br />
  if ( characterCode == 13 ) { // 13 is the ASCII character code for the enter key<br />
    document.getElementById('button_id').click();<br />
  }<br />
}


Attach the above function to the body / window elements onkeydown event.

Clean code is the key to happiness.

QuestionBinding Dropdownlist to gridview column...... Pin
pranavcool27-Jan-08 22:16
pranavcool27-Jan-08 22:16 
AnswerRe: Binding Dropdownlist to gridview column...... Pin
newc127-Jan-08 23:18
newc127-Jan-08 23:18 
GeneralProblem in creating menu items using XML Pin
dipak.dipak27-Jan-08 21:19
dipak.dipak27-Jan-08 21:19 
GeneralRe: Problem in creating menu items using XML Pin
Paddy Boyd27-Jan-08 22:50
Paddy Boyd27-Jan-08 22:50 
GeneralOpening a view new grid view within a grid view Pin
Anuradha61227-Jan-08 21:18
Anuradha61227-Jan-08 21:18 
GeneralRe: Opening a view new grid view within a grid view Pin
N a v a n e e t h27-Jan-08 21:50
N a v a n e e t h27-Jan-08 21:50 
GeneralASP.NEt editing gridview cells Pin
cool8327-Jan-08 20:54
cool8327-Jan-08 20:54 
QuestionGridView Paging Pin
AS@1327-Jan-08 20:34
AS@1327-Jan-08 20:34 
GeneralRe: GridView Paging Pin
N a v a n e e t h27-Jan-08 21:46
N a v a n e e t h27-Jan-08 21:46 
GeneralRe: GridView Paging Pin
AS@1327-Jan-08 23:17
AS@1327-Jan-08 23:17 
GeneralRe: GridView Paging Pin
Venkatesh Mookkan27-Jan-08 21:49
Venkatesh Mookkan27-Jan-08 21:49 
GeneralRe: GridView Paging Pin
Anuradha61227-Jan-08 21:54
Anuradha61227-Jan-08 21:54 
QuestionHow to Use Subreports in List to acheive ReportViewer Drillthrough Reports Functionality Pin
Bhaskar14198527-Jan-08 19:43
Bhaskar14198527-Jan-08 19:43 
QuestionDesigner Error in WorkFlow Project - VS 2005 Pin
Blumen27-Jan-08 17:28
Blumen27-Jan-08 17:28 
GeneralSQL Server Database permissions Pin
Nada Adel27-Jan-08 8:43
Nada Adel27-Jan-08 8:43 
GeneralFile Download Problem Pin
juli Paris27-Jan-08 8:00
juli Paris27-Jan-08 8:00 
GeneralRe: File Download Problem Pin
Tad McClellan27-Jan-08 8:20
professionalTad McClellan27-Jan-08 8:20 

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.