Click here to Skip to main content
15,795,991 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: configuration error... Pin
saanj10-Jun-09 3:54
saanj10-Jun-09 3:54 
GeneralRe: configuration error... Pin
Baran M9-Jun-09 22:01
Baran M9-Jun-09 22:01 
AnswerRe: configuration error... Pin
Baran M10-Jun-09 0:09
Baran M10-Jun-09 0:09 
QuestionSubmit details with enter key Pin
benams9-Jun-09 20:45
benams9-Jun-09 20:45 
AnswerRe: Submit details with enter key Pin
saanj9-Jun-09 21:08
saanj9-Jun-09 21:08 
AnswerRe: Submit details with enter key Pin
Sujay chakraborty9-Jun-09 22:03
Sujay chakraborty9-Jun-09 22:03 
GeneralRe: Submit details with enter key Pin
benams14-Jun-09 4:28
benams14-Jun-09 4:28 
GeneralRe: Submit details with enter key Pin
Sujay chakraborty15-Jun-09 5:31
Sujay chakraborty15-Jun-09 5:31 
hey benams,

So according to ur present senario, i guess one of the following 2 will help

1. In case the control use server side event u wanna fire is an html control with runat="server" tag, in that case u need to use javascript in the following manner

<script language=javascript type=text/javascript>
function checkKey()
        {
            var key;
            key = window.event.keyCode;
            if(key==13)
            {
                var btn = document.getElementById("Control_ID");
                if(btn!=null)
                {
                    btn.focus();
                    btn.ServerClick();
                }                
            }
        }
        </script>


2) In case the control is an asp control starting with asp: then in that case the earlier way i suggested is appropriate, further follow this link to clear ur doubts

Hope this helps, and if not feel free to query again

Till then happy coding Wink | ;)
QuestionLinkButton OnClick event problem Pin
benams9-Jun-09 20:40
benams9-Jun-09 20:40 
AnswerRe: LinkButton OnClick event problem Pin
saanj9-Jun-09 21:06
saanj9-Jun-09 21:06 
GeneralRe: LinkButton OnClick event problem Pin
benams9-Jun-09 22:12
benams9-Jun-09 22:12 
GeneralRe: LinkButton OnClick event problem Pin
saanj9-Jun-09 22:24
saanj9-Jun-09 22:24 
GeneralRe: LinkButton OnClick event problem Pin
benams10-Jun-09 1:11
benams10-Jun-09 1:11 
Questionthe following error in stored procedure Pin
anbusenthil9-Jun-09 20:31
anbusenthil9-Jun-09 20:31 
AnswerRe: the following error in stored procedure Pin
Christian Graus9-Jun-09 20:37
protectorChristian Graus9-Jun-09 20:37 
AnswerRe: the following error in stored procedure Pin
Abhijit Jana9-Jun-09 20:39
professionalAbhijit Jana9-Jun-09 20:39 
GeneralRe: the following error in stored procedure Pin
anbusenthil9-Jun-09 20:40
anbusenthil9-Jun-09 20:40 
GeneralRe: the following error in stored procedure Pin
Abhijit Jana9-Jun-09 20:56
professionalAbhijit Jana9-Jun-09 20:56 
GeneralRe: the following error in stored procedure Pin
Christian Graus9-Jun-09 21:23
protectorChristian Graus9-Jun-09 21:23 
GeneralRe: the following error in stored procedure Pin
anbusenthil9-Jun-09 22:09
anbusenthil9-Jun-09 22:09 
AnswerRe: the following error in stored procedure Pin
saanj9-Jun-09 20:43
saanj9-Jun-09 20:43 
QuestionSession expires when directory is moved. Pin
SekharOne9-Jun-09 20:24
SekharOne9-Jun-09 20:24 
AnswerRe: Session expires when directory is moved. Pin
Abhijit Jana9-Jun-09 20:30
professionalAbhijit Jana9-Jun-09 20:30 
GeneralRe: Session expires when directory is moved. Pin
SekharOne9-Jun-09 20:38
SekharOne9-Jun-09 20:38 
QuestionMail Dilivery NotiFication when Mail Delivery is Fail using amtp.send Method Pin
kirti.darji9-Jun-09 20:02
kirti.darji9-Jun-09 20:02 

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.