Click here to Skip to main content
15,890,186 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Display Record Pin
Socheat.Net5-Jul-06 21:22
Socheat.Net5-Jul-06 21:22 
QuestionHow to include ASP file in .aspx page Pin
ypsyong4-Jul-06 22:25
ypsyong4-Jul-06 22:25 
AnswerRe: How to include ASP file in .aspx page Pin
Socheat.Net4-Jul-06 22:49
Socheat.Net4-Jul-06 22:49 
GeneralRe: How to include ASP file in .aspx page Pin
ypsyong4-Jul-06 23:12
ypsyong4-Jul-06 23:12 
GeneralRe: How to include ASP file in .aspx page Pin
Socheat.Net4-Jul-06 23:37
Socheat.Net4-Jul-06 23:37 
AnswerRe: How to include ASP file in .aspx page Pin
Guffa5-Jul-06 1:03
Guffa5-Jul-06 1:03 
QuestionEnter key Press Event on textbox Pin
nabeelkhan4-Jul-06 21:42
nabeelkhan4-Jul-06 21:42 
AnswerRe: Enter key Press Event on textbox Pin
mnaveed4-Jul-06 22:55
mnaveed4-Jul-06 22:55 
you can use script to call the onkeypress function and from there call any event in your code to fill your list like this

in page load event write this line
TextBox.Attributes.Add("onkeydown", "FillList()");
write this script in aspx page
function FillList()<br />
    {<br />
      if(event.keyCode == 13)<br />
      {<br />
       document.getElementById("Buttion2").click();<br />
      }<br />
    }


you must have a Button2 click event in your code file to fill list.
Hope this will help

hope this will help youSmile | :)

Nav.
GeneralRe: Enter key Press Event on textbox [modified] Pin
nabeelkhan4-Jul-06 23:57
nabeelkhan4-Jul-06 23:57 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 0:31
mnaveed5-Jul-06 0:31 
GeneralRe: Enter key Press Event on textbox Pin
nabeelkhan5-Jul-06 0:44
nabeelkhan5-Jul-06 0:44 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 1:03
mnaveed5-Jul-06 1:03 
GeneralRe: Enter key Press Event on textbox Pin
nabeelkhan5-Jul-06 1:32
nabeelkhan5-Jul-06 1:32 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 2:08
mnaveed5-Jul-06 2:08 
QuestionSQL 2000 Database connection error Pin
For_IT4-Jul-06 21:40
For_IT4-Jul-06 21:40 
AnswerRe: SQL 2000 Database connection error Pin
minhpc_bk4-Jul-06 21:52
minhpc_bk4-Jul-06 21:52 
AnswerRe: SQL 2000 Database connection error Pin
Colin Angus Mackay4-Jul-06 22:18
Colin Angus Mackay4-Jul-06 22:18 
AnswerRe: SQL 2000 Database connection error Pin
For_IT4-Jul-06 22:43
For_IT4-Jul-06 22:43 
AnswerRe: SQL 2000 Database connection error Pin
vishal7056-Jul-06 2:17
vishal7056-Jul-06 2:17 
Questionhow to set HTMLInput Element type radio index Pin
Shajeel4-Jul-06 21:24
Shajeel4-Jul-06 21:24 
AnswerRe: how to set HTMLInput Element type radio index Pin
Kapilshivam4-Jul-06 22:02
Kapilshivam4-Jul-06 22:02 
GeneralRe: how to set HTMLInput Element type radio index Pin
Shajeel4-Jul-06 22:12
Shajeel4-Jul-06 22:12 
QuestionHow to group selected controls on web page.. Pin
sam_io4-Jul-06 21:08
sam_io4-Jul-06 21:08 
QuestionIdle Timeout in ASPX and HTML Pin
Guru20204-Jul-06 20:58
Guru20204-Jul-06 20:58 
QuestionHow to import CSV file into MSSQL in asp.net page using vb script [modified] Pin
ypsyong4-Jul-06 20:20
ypsyong4-Jul-06 20: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.