Click here to Skip to main content
15,921,548 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: javascript problem Pin
krishnaveer20-Aug-08 21:31
krishnaveer20-Aug-08 21:31 
GeneralRe: javascript problem Pin
Christian Graus20-Aug-08 21:52
protectorChristian Graus20-Aug-08 21:52 
GeneralRe: javascript problem Pin
astanton197821-Aug-08 9:05
astanton197821-Aug-08 9:05 
AnswerRe: javascript problem Pin
Abhijit Jana20-Aug-08 21:42
professionalAbhijit Jana20-Aug-08 21:42 
QuestionAt a time select only one gridview header checkbox only Pin
Member 387988120-Aug-08 20:43
Member 387988120-Aug-08 20:43 
AnswerRe: At a time select only one gridview header checkbox only Pin
Sandeep Akhare20-Aug-08 20:56
Sandeep Akhare20-Aug-08 20:56 
GeneralRe: At a time select only one gridview header checkbox only Pin
Member 387988120-Aug-08 21:02
Member 387988120-Aug-08 21:02 
Questionfile upload control under updatepanel Pin
UD(IA)20-Aug-08 19:50
UD(IA)20-Aug-08 19:50 
AnswerRe: file upload control under updatepanel Pin
esakkirajak20-Aug-08 22:06
esakkirajak20-Aug-08 22:06 
GeneralRe: file upload control under updatepanel Pin
UD(IA)21-Aug-08 19:56
UD(IA)21-Aug-08 19:56 
Questionhow to get querystring and add with hyperlink in grid view Pin
nestor.garais20-Aug-08 18:46
nestor.garais20-Aug-08 18:46 
AnswerRe: how to get querystring and add with hyperlink in grid view Pin
AhsanS20-Aug-08 19:31
AhsanS20-Aug-08 19:31 
QuestionAJAX Tab control Pin
FlorianS20-Aug-08 18:37
FlorianS20-Aug-08 18:37 
QuestionButton in wizard Pin
kjosh20-Aug-08 18:24
kjosh20-Aug-08 18:24 
AnswerRe: Button in wizard Pin
Abhijit Jana20-Aug-08 18:34
professionalAbhijit Jana20-Aug-08 18:34 
QuestionThis probably has been asked before but I haven't found an answer ... Pin
Rameez Raja20-Aug-08 17:17
Rameez Raja20-Aug-08 17:17 
AnswerRe: This probably has been asked before but I haven't found an answer ... Pin
AhsanS20-Aug-08 19:33
AhsanS20-Aug-08 19:33 
GeneralRe: This probably has been asked before but I haven't found an answer ... Pin
Rameez Raja21-Aug-08 0:37
Rameez Raja21-Aug-08 0:37 
QuestionConditions in aspx page Pin
kjosh20-Aug-08 16:41
kjosh20-Aug-08 16:41 
AnswerRe: Conditions in aspx page Pin
Christian Graus20-Aug-08 16:46
protectorChristian Graus20-Aug-08 16:46 
GeneralRe: Conditions in aspx page Pin
kjosh20-Aug-08 18:23
kjosh20-Aug-08 18:23 
GeneralRe: Conditions in aspx page Pin
Christian Graus20-Aug-08 19:33
protectorChristian Graus20-Aug-08 19:33 
GeneralRe: Conditions in aspx page Pin
J4amieC20-Aug-08 22:50
J4amieC20-Aug-08 22:50 
AnswerRe: Conditions in aspx page Pin
Abhijit Jana20-Aug-08 18:17
professionalAbhijit Jana20-Aug-08 18:17 
you hjave to check condition for your application and based on that just show your controls.

e.g
protected void Page_Load(.....)<br />
     {<br />
     if(Condition of Application1)<br />
         {<br />
          //Show Controls of Application1<br />
          //Hide Control of Applicattion 2,3,4,5 <br />
        }     <br />
      else if(Condition of Application2)<br />
         {<br />
          //Show Controls of Application2<br />
          //Hide Control of Applicattion 1,3,4,5 <br />
        }     <br />
        .<br />
        . <br />
     } 
you can also Switch statement for that

cheers,
Abhijit
Check My Latest Article

AnswerRe: Conditions in aspx page Pin
Sandeep Akhare20-Aug-08 20:54
Sandeep Akhare20-Aug-08 20:54 

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.