Click here to Skip to main content
15,920,602 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to proceed Pin
Paul Conrad25-Oct-11 19:40
professionalPaul Conrad25-Oct-11 19:40 
GeneralRe: how to proceed Pin
Marcel Vreuls (www.agentbase.nl)25-Oct-11 20:48
Marcel Vreuls (www.agentbase.nl)25-Oct-11 20:48 
QuestionEmail Not be recognised as a link Pin
<<Tash18>>25-Oct-11 4:16
<<Tash18>>25-Oct-11 4:16 
AnswerRe: Email Not be recognised as a link Pin
Not Active25-Oct-11 5:16
mentorNot Active25-Oct-11 5:16 
AnswerRe: Email Not be recognised as a link Pin
Bernhard Hiller25-Oct-11 20:18
Bernhard Hiller25-Oct-11 20:18 
QuestionMaster pages Pin
parthibandharma24-Oct-11 21:27
professionalparthibandharma24-Oct-11 21:27 
AnswerRe: Master pages Pin
JacquesDP25-Oct-11 10:56
JacquesDP25-Oct-11 10:56 
AnswerRe: Master pages Pin
jkirkerx28-Oct-11 20:06
professionaljkirkerx28-Oct-11 20:06 
QuestionRDLC Report wizard error Pin
Blikkies24-Oct-11 21:15
professionalBlikkies24-Oct-11 21:15 
AnswerRe: RDLC Report wizard error Pin
JacquesDP24-Oct-11 23:22
JacquesDP24-Oct-11 23:22 
Questionwrite the code forget password Pin
ankush teotia24-Oct-11 16:59
ankush teotia24-Oct-11 16:59 
AnswerRe: write the code forget password Pin
JacquesDP25-Oct-11 10:57
JacquesDP25-Oct-11 10:57 
QuestionMVC vs Grails Pin
mehrdadc4823-Oct-11 20:33
mehrdadc4823-Oct-11 20:33 
QuestionProblem to submit an ASP.NET form by the ENTER KEY Pin
TRAORE cheickna23-Oct-11 13:12
TRAORE cheickna23-Oct-11 13:12 
AnswerRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
JacquesDP23-Oct-11 21:26
JacquesDP23-Oct-11 21:26 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
TRAORE cheickna24-Oct-11 13:16
TRAORE cheickna24-Oct-11 13:16 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
JacquesDP24-Oct-11 23:06
JacquesDP24-Oct-11 23:06 
I assume that you set the button visibility from the code behind on some sort of condition, so when you set the visibility for the button, change the default button for the panel as well.

C#
if(someCondition)
{
   mainButton.Visible = false;
   pnlDetails.DefaultButton = "secondButton";
   ...
   ...
}
else
{
   mainButton.Visible = true;
   pnlDetails.DefaultButton = "mainButton";
   ...
   ...
}


Hope this helps
No matter how long he who laughs last laughs, he who laughs first has a head start!

GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
TRAORE cheickna25-Oct-11 10:03
TRAORE cheickna25-Oct-11 10:03 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
JacquesDP25-Oct-11 10:43
JacquesDP25-Oct-11 10:43 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
parthibandharma21-Mar-13 20:25
professionalparthibandharma21-Mar-13 20:25 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
parthibandharma24-Oct-11 21:19
professionalparthibandharma24-Oct-11 21:19 
GeneralRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
JacquesDP24-Oct-11 23:17
JacquesDP24-Oct-11 23:17 
AnswerRe: Problem to submit an ASP.NET form by the ENTER KEY Pin
jkirkerx28-Oct-11 20:08
professionaljkirkerx28-Oct-11 20:08 
Questionheader on server control Pin
Member 821751723-Oct-11 8:42
Member 821751723-Oct-11 8:42 
AnswerRe: header on server control Pin
jkirkerx28-Oct-11 20:10
professionaljkirkerx28-Oct-11 20:10 

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.