Click here to Skip to main content
15,891,248 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Get ID's Of All Textboxes into an Array? Pin
Pawan Kiran5-Aug-09 3:06
Pawan Kiran5-Aug-09 3:06 
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 
hi i have a link button...,

the link button have 2 modalpopupextender...,

based on the session value i like to view a modalpopupextender...,

but its showing two modal popup extender at a time...,

how to solve this...,

this is my piece code:

<asp:linkbutton id="LinkButton2" runat="server" onclick="LinkButton2_Click">Post Comment
<cc1:modalpopupextender id="ModalPopupExtender1" runat="server" targetcontrolid="LinkButton2"
="" popupcontrolid="divPopUp1" backgroundcssclass="popUpStyle" popupdraghandlecontrolid="panelDragHandle1" dropshadow="false">


<asp:panel runat="Server" id="panelDragHandle1" cssclass="drag" width="550px">
Drag To Ur Place

<asp:label id="Label3" runat="server" text="Session is not there">
<asp:button id="btnClose1" runat="server" text="Close">

<cc1:modalpopupextender id="ModalPopupExtender2" runat="server" targetcontrolid="LinkButton2"
="" popupcontrolid="divPopUp2" backgroundcssclass="popUpStyle" popupdraghandlecontrolid="panelDragHandle2" dropshadow="false">


<asp:panel runat="Server" id="panelDragHandle2" cssclass="drag" width="550px">
Drag To Ur Place

<asp:label id="Label1" runat="server" text="Session is there">
<asp:button id="Button1" runat="server" text="Close">



code bolck:

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

Thanks & Regards,
Member 3879881,
please don't forget to vote on the post

AnswerRe: based on the session modalpopup extrender have to show Pin
Sundeep Ganiga5-Aug-09 2:17
Sundeep Ganiga5-Aug-09 2:17 
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 

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.