Click here to Skip to main content
15,910,234 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how make make sorting and paging both work togeather? Pin
laocat20036-Oct-06 5:06
laocat20036-Oct-06 5:06 
Question(Ultra)WebTabs from Ingragistic Pin
julie763-Oct-06 6:22
julie763-Oct-06 6:22 
AnswerRe: (Ultra)WebTabs from Ingragistic Pin
Member 964-Oct-06 13:23
Member 964-Oct-06 13:23 
QuestionWrong button clicked when user presses "Enter" key Pin
Goalie353-Oct-06 5:28
Goalie353-Oct-06 5:28 
AnswerRe: Wrong button clicked when user presses "Enter" key Pin
ToddHileHoffer3-Oct-06 5:47
ToddHileHoffer3-Oct-06 5:47 
QuestionHow to get Focus on one Button,if two buttons exists on the same form Pin
ravindradonkada3-Oct-06 3:07
ravindradonkada3-Oct-06 3:07 
AnswerRe: How to get Focus on one Button,if two buttons exists on the same form Pin
Sathesh Sakthivel3-Oct-06 3:15
Sathesh Sakthivel3-Oct-06 3:15 
AnswerRe: How to get Focus on one Button,if two buttons exists on the same form Pin
ToddHileHoffer3-Oct-06 4:55
ToddHileHoffer3-Oct-06 4:55 
put the script below in your page.

function ButtonPress (evt, btnID)
{
if (evt.keyCode == "13")
{evt.returnValue= false ; evt.cancel= true ; document.getElementById(btnID).click(); return false; }
}


//the code behind should have
this.txtPassword.Attributes.Add("onKeyPress", @"ButtonPress(event, '" + @this.ButtonSignin.ClientID + @"')");

//this code will cause the button click event when the user presses enter and the textbox has the focus. Basically you can set a default button for each textbox




how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06

AnswerRe: How to get Focus on one Button,if two buttons exists on the same form Pin
vikram1383-Oct-06 17:36
vikram1383-Oct-06 17:36 
Questionpage load event not called Pin
Deepak the Cool3-Oct-06 1:23
Deepak the Cool3-Oct-06 1:23 
AnswerRe: page load event not called Pin
CWIZO3-Oct-06 6:37
CWIZO3-Oct-06 6:37 
QuestionWebservice and COM object Pin
Talal Sultan3-Oct-06 1:22
Talal Sultan3-Oct-06 1:22 
QuestionAvoid Datagrid Refresh Pin
kavithapuranik3-Oct-06 0:40
kavithapuranik3-Oct-06 0:40 
Questionhow to make web application DDA compliant ? Pin
King Shez3-Oct-06 0:32
King Shez3-Oct-06 0:32 
QuestionProblem With Hosting Pin
alokdotnet3-Oct-06 0:16
alokdotnet3-Oct-06 0:16 
QuestionFinding client side(browser side) DSN through ODBC Pin
rahul21nov2-Oct-06 23:43
rahul21nov2-Oct-06 23:43 
QuestionCrystal report problem Pin
srilu nagalla2-Oct-06 23:29
srilu nagalla2-Oct-06 23:29 
AnswerRe: Crystal report problem Pin
just3ala23-Oct-06 23:11
just3ala23-Oct-06 23:11 
GeneralRe: Crystal report problem Pin
srilu nagalla4-Oct-06 1:32
srilu nagalla4-Oct-06 1:32 
GeneralRe: Crystal report problem Pin
just3ala24-Oct-06 2:38
just3ala24-Oct-06 2:38 
Questionscape sequence in insert query Pin
srinandan..2-Oct-06 23:23
srinandan..2-Oct-06 23:23 
AnswerRe: scape sequence in insert query Pin
Deepak the Cool3-Oct-06 1:40
Deepak the Cool3-Oct-06 1:40 
AnswerRe: scape sequence in insert query Pin
e-laj3-Oct-06 11:39
e-laj3-Oct-06 11:39 
AnswerRe: scape sequence in insert query Pin
Member 964-Oct-06 13:29
Member 964-Oct-06 13:29 
QuestionCapture onclick event of button in datagrid Pin
cullyk2-Oct-06 23:23
cullyk2-Oct-06 23:23 

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.