Click here to Skip to main content
16,016,770 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: configuration error... Pin
saanj10-Jun-09 2:54
saanj10-Jun-09 2:54 
GeneralRe: configuration error... Pin
Baran M9-Jun-09 21:01
Baran M9-Jun-09 21:01 
AnswerRe: configuration error... Pin
Baran M9-Jun-09 23:09
Baran M9-Jun-09 23:09 
QuestionSubmit details with enter key Pin
benams9-Jun-09 19:45
benams9-Jun-09 19:45 
AnswerRe: Submit details with enter key Pin
saanj9-Jun-09 20:08
saanj9-Jun-09 20:08 
AnswerRe: Submit details with enter key Pin
Sujay chakraborty9-Jun-09 21:03
Sujay chakraborty9-Jun-09 21:03 
GeneralRe: Submit details with enter key Pin
benams14-Jun-09 3:28
benams14-Jun-09 3:28 
GeneralRe: Submit details with enter key Pin
Sujay chakraborty15-Jun-09 4:31
Sujay chakraborty15-Jun-09 4: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 19:40
benams9-Jun-09 19:40 
AnswerRe: LinkButton OnClick event problem Pin
saanj9-Jun-09 20:06
saanj9-Jun-09 20:06 
GeneralRe: LinkButton OnClick event problem Pin
benams9-Jun-09 21:12
benams9-Jun-09 21:12 
GeneralRe: LinkButton OnClick event problem Pin
saanj9-Jun-09 21:24
saanj9-Jun-09 21:24 
GeneralRe: LinkButton OnClick event problem Pin
benams10-Jun-09 0:11
benams10-Jun-09 0:11 
Questionthe following error in stored procedure Pin
anbusenthil9-Jun-09 19:31
anbusenthil9-Jun-09 19:31 
AnswerRe: the following error in stored procedure Pin
Christian Graus9-Jun-09 19:37
protectorChristian Graus9-Jun-09 19:37 
AnswerRe: the following error in stored procedure Pin
Abhijit Jana9-Jun-09 19:39
professionalAbhijit Jana9-Jun-09 19:39 
GeneralRe: the following error in stored procedure Pin
anbusenthil9-Jun-09 19:40
anbusenthil9-Jun-09 19:40 
GeneralRe: the following error in stored procedure Pin
Abhijit Jana9-Jun-09 19:56
professionalAbhijit Jana9-Jun-09 19:56 
GeneralRe: the following error in stored procedure Pin
Christian Graus9-Jun-09 20:23
protectorChristian Graus9-Jun-09 20:23 
GeneralRe: the following error in stored procedure Pin
anbusenthil9-Jun-09 21:09
anbusenthil9-Jun-09 21:09 
AnswerRe: the following error in stored procedure Pin
saanj9-Jun-09 19:43
saanj9-Jun-09 19:43 
QuestionSession expires when directory is moved. Pin
SekharOne9-Jun-09 19:24
SekharOne9-Jun-09 19:24 
AnswerRe: Session expires when directory is moved. Pin
Abhijit Jana9-Jun-09 19:30
professionalAbhijit Jana9-Jun-09 19:30 
GeneralRe: Session expires when directory is moved. Pin
SekharOne9-Jun-09 19:38
SekharOne9-Jun-09 19:38 
QuestionMail Dilivery NotiFication when Mail Delivery is Fail using amtp.send Method Pin
kirti.darji9-Jun-09 19:02
kirti.darji9-Jun-09 19: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.