Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Get ID's Of All Textboxes into an Array? Pin
Blue_Boy5-Aug-09 3:09
Blue_Boy5-Aug-09 3:09 
AnswerRe: Get ID's Of All Textboxes into an Array? Pin
Arun Jacob5-Aug-09 3:10
Arun Jacob5-Aug-09 3:10 
GeneralRe: Get ID's Of All Textboxes into an Array? Pin
Abhijit Jana5-Aug-09 3:12
professionalAbhijit Jana5-Aug-09 3:12 
JokeRe: Get ID's Of All Textboxes into an Array? Pin
Manas Bhardwaj5-Aug-09 3:43
professionalManas Bhardwaj5-Aug-09 3:43 
Questionlocation in x,y of a controlin web form Pin
shankbond5-Aug-09 2:07
shankbond5-Aug-09 2:07 
AnswerRe: location in x,y of a controlin web form Pin
Not Active5-Aug-09 2:13
mentorNot Active5-Aug-09 2:13 
Questionbased on the session modalpopup extrender have to show Pin
Member 38798815-Aug-09 1:58
Member 38798815-Aug-09 1:58 
AnswerRe: based on the session modalpopup extrender have to show Pin
Sundeep Ganiga5-Aug-09 2:17
Sundeep Ganiga5-Aug-09 2:17 
Member 3879881 wrote:
protected void LinkButton2_Click(object sender, EventArgs e)
{
if (Session["uname"] == null)
{
ModalPopupExtender1.Show();
}
else
{
ModalPopupExtender2.Show();
}
}


Try To Hide other POPUP Extender alternately.

void LinkButton2_Click(object sender, EventArgs e)
{
if (Session["uname"] == null)
{
ModalPopupExtender1.Show();
ModalPopupExtender2.Hide();
}
else
{
ModalPopupExtender2.Show();
ModalPopupExtender1.Hide();
}


Any Problem with this?

Sundeep Ganiga
When the only tool you have is a hammer, everything looks like a nail.
Come Forth Yourself to Click "Good Answer" for any expected solution.
Let us Support our C Project Programmers who provide solutions here.

AnswerRe: based on the session modalpopup extrender have to show Pin
Jay Royall5-Aug-09 2:19
Jay Royall5-Aug-09 2:19 
QuestionIFrame Pin
Ersan Ercek5-Aug-09 1:09
Ersan Ercek5-Aug-09 1:09 
AnswerRe: IFrame Pin
Christian Graus5-Aug-09 1:14
protectorChristian Graus5-Aug-09 1:14 
GeneralRe: IFrame Pin
Ersan Ercek5-Aug-09 1:16
Ersan Ercek5-Aug-09 1:16 
GeneralRe: IFrame Pin
Blue_Boy5-Aug-09 1:27
Blue_Boy5-Aug-09 1:27 
GeneralRe: IFrame Pin
Ersan Ercek5-Aug-09 1:32
Ersan Ercek5-Aug-09 1:32 
AnswerRe: IFrame Pin
Oakman5-Aug-09 5:54
Oakman5-Aug-09 5:54 
Questiondummy data Pin
Rajeshwar Code- Developer5-Aug-09 1:01
Rajeshwar Code- Developer5-Aug-09 1:01 
AnswerRe: dummy data Pin
Christian Graus5-Aug-09 1:03
protectorChristian Graus5-Aug-09 1:03 
GeneralRe: dummy data Pin
Rajeshwar Code- Developer5-Aug-09 1:06
Rajeshwar Code- Developer5-Aug-09 1:06 
GeneralRe: dummy data Pin
Christian Graus5-Aug-09 1:08
protectorChristian Graus5-Aug-09 1:08 
GeneralRe: dummy data Pin
Rajeshwar Code- Developer5-Aug-09 1:12
Rajeshwar Code- Developer5-Aug-09 1:12 
GeneralRe: dummy data Pin
Christian Graus5-Aug-09 1:16
protectorChristian Graus5-Aug-09 1:16 
GeneralRe: dummy data Pin
Rajeshwar Code- Developer5-Aug-09 1:17
Rajeshwar Code- Developer5-Aug-09 1:17 
GeneralRe: dummy data Pin
Rajeshwar Code- Developer5-Aug-09 1:47
Rajeshwar Code- Developer5-Aug-09 1:47 
GeneralRe: dummy data Pin
Blue_Boy5-Aug-09 1:49
Blue_Boy5-Aug-09 1:49 
GeneralRe: dummy data Pin
Zafar A khan 5-Aug-09 1:54
professionalZafar A khan 5-Aug-09 1: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.