Click here to Skip to main content
15,893,622 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to show Message Box in Asp.Net with C# Pin
princy1028-Apr-09 23:56
princy1028-Apr-09 23:56 
AnswerRe: How to show Message Box in Asp.Net with C# Pin
Murugesan G29-Apr-09 0:02
Murugesan G29-Apr-09 0:02 
AnswerRe: How to show Message Box in Asp.Net with C# Pin
jai_10129-Apr-09 0:04
jai_10129-Apr-09 0:04 
AnswerRe: How to show Message Box in Asp.Net with C# Pin
Vimalsoft(Pty) Ltd29-Apr-09 2:35
professionalVimalsoft(Pty) Ltd29-Apr-09 2:35 
GeneralRe: How to show Message Box in Asp.Net with C# Pin
Abhijit Jana29-Apr-09 2:59
professionalAbhijit Jana29-Apr-09 2:59 
GeneralRe: How to show Message Box in Asp.Net with C# Pin
Vimalsoft(Pty) Ltd29-Apr-09 3:08
professionalVimalsoft(Pty) Ltd29-Apr-09 3:08 
QuestionMenu Control inside the View Control of the Multiview Control Pin
Vimalsoft(Pty) Ltd28-Apr-09 23:35
professionalVimalsoft(Pty) Ltd28-Apr-09 23:35 
QuestionTextbox Focus Problem Pin
Hemalatha.A.M.28-Apr-09 23:21
Hemalatha.A.M.28-Apr-09 23:21 
Hi,
Am having textbox in Gridview.I need to set the focus(i.e. the cursor should place inside textbox) when add link button is clicked. For this i have used java scipt.
function Click_Enter(CID,event)
{
var key;
key=(event.which) ? event.which : event.keyCode;
if(key==13)
{
document.getElementById(CID).focus();
}
return true;
}

And in code behind of link button click event

ImageButton ibtnSave = (ImageButton)gvBillingType.FooterRow.FindControl("ibtnSave");
TextBox txtAddcontrol = (TextBox)gvBillingType.FooterRow.FindControl("txtFooterBillingType");
Page.RegisterStartupScript("SetFocus", "document.getElementById('" + txtAddcontrol.ClientID + "').focus();");
txtAddcontrol.Attributes.Add("onkeydown", "javascript : return Click_Enter('" + ibtnSave.ClientID + "',event);");

this code is Wkg in Mozila.. but in IE it is not WKG.. Pls anyone help me fast.
AnswerRe: Textbox Focus Problem Pin
jai_10128-Apr-09 23:56
jai_10128-Apr-09 23:56 
AnswerRe: Textbox Focus Problem Pin
Murugesan G28-Apr-09 23:59
Murugesan G28-Apr-09 23:59 
GeneralRe: Textbox Focus Problem Pin
Hemalatha.A.M.29-Apr-09 0:10
Hemalatha.A.M.29-Apr-09 0:10 
GeneralRe: Textbox Focus Problem Pin
codingrocks29-Apr-09 1:04
codingrocks29-Apr-09 1:04 
GeneralRe: Textbox Focus Problem Pin
Hemalatha.A.M.29-Apr-09 1:41
Hemalatha.A.M.29-Apr-09 1:41 
Questiongrid view width is going large Pin
lakshmichawala28-Apr-09 22:59
lakshmichawala28-Apr-09 22:59 
AnswerRe: grid view width is going large Pin
saanj28-Apr-09 23:44
saanj28-Apr-09 23:44 
Question[Message Deleted] Pin
Anjani Poornima28-Apr-09 21:30
Anjani Poornima28-Apr-09 21:30 
AnswerRe: how can we use notepad in our application Pin
Christian Graus28-Apr-09 21:35
protectorChristian Graus28-Apr-09 21:35 
AnswerRe: how can we use notepad in our application Pin
Abhishek Sur28-Apr-09 22:18
professionalAbhishek Sur28-Apr-09 22:18 
GeneralRe: how can we use notepad in our application Pin
Christian Graus28-Apr-09 22:23
protectorChristian Graus28-Apr-09 22:23 
GeneralRe: how can we use notepad in our application Pin
Abhishek Sur29-Apr-09 5:24
professionalAbhishek Sur29-Apr-09 5:24 
QuestionCheckboxlist in datalist Pin
indian2228-Apr-09 21:26
indian2228-Apr-09 21:26 
AnswerRe: Checkboxlist in datalist Pin
Christian Graus28-Apr-09 21:37
protectorChristian Graus28-Apr-09 21:37 
GeneralRe: Checkboxlist in datalist Pin
indian2228-Apr-09 22:01
indian2228-Apr-09 22:01 
GeneralRe: Checkboxlist in datalist Pin
Christian Graus28-Apr-09 22:24
protectorChristian Graus28-Apr-09 22:24 
GeneralRe: Checkboxlist in datalist Pin
indian2228-Apr-09 22:50
indian2228-Apr-09 22:50 

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.