Click here to Skip to main content
15,917,645 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: to store connection string in different web.config files in different loacations and machines Pin
sashidhar24-Sep-09 0:19
sashidhar24-Sep-09 0:19 
GeneralRe: to store connection string in different web.config files in different loacations and machines Pin
myms.net24-Sep-09 0:32
myms.net24-Sep-09 0:32 
GeneralRe: to store connection string in different web.config files in different loacations and machines Pin
sashidhar24-Sep-09 0:49
sashidhar24-Sep-09 0:49 
GeneralRe: to store connection string in different web.config files in different loacations and machines Pin
myms.net24-Sep-09 1:02
myms.net24-Sep-09 1:02 
AnswerRe: to store connection string in different web.config files in different loacations and machines Pin
Gamzun24-Sep-09 8:36
Gamzun24-Sep-09 8:36 
Questionasp.net Pin
rajni_nanu23-Sep-09 23:50
rajni_nanu23-Sep-09 23:50 
AnswerRe: asp.net Pin
sashidhar23-Sep-09 23:54
sashidhar23-Sep-09 23:54 
AnswerRe: asp.net Pin
Christian Graus24-Sep-09 0:39
protectorChristian Graus24-Sep-09 0:39 
Questionsubstring Pin
ritasaumya23-Sep-09 23:50
ritasaumya23-Sep-09 23:50 
AnswerRe: substring Pin
N a v a n e e t h23-Sep-09 23:55
N a v a n e e t h23-Sep-09 23:55 
AnswerRe: substring Pin
sashidhar23-Sep-09 23:56
sashidhar23-Sep-09 23:56 
AnswerRe: substring Pin
sris 42624-Sep-09 0:05
sris 42624-Sep-09 0:05 
AnswerRe: substring Pin
Christian Graus24-Sep-09 0:40
protectorChristian Graus24-Sep-09 0:40 
Questionajax tab panel Pin
KhandelwalA23-Sep-09 23:48
KhandelwalA23-Sep-09 23:48 
AnswerRe: ajax tab panel Pin
sashidhar24-Sep-09 0:02
sashidhar24-Sep-09 0:02 
QuestionRadiobuttonlist+AJAX Modal POPup Control Pin
Udayaraju23-Sep-09 23:44
Udayaraju23-Sep-09 23:44 
I am opening an panel when i click newuser linkbuttton. Panel consists of 4 diff. radiobuttons
wen i select an radio button option..it should navigate to new page

<asp:LinkButton ID="linkNewUser" runat="server" style="z-index: 1; left: 42px; top: 170px; position: absolute; height: 21px; width: 76px">NewUser</asp:LinkButton>

<asp:Panel ID="panelSelection" runat="server" CssClass="modalPopup" style="display: none" >
<asp:RadioButtonList ID="RadioButtonList1" runat="server" >
<asp:ListItem Value="0">Patient</asp:ListItem>
<asp:ListItem Value="1">Doctor</asp:ListItem>
<asp:ListItem Value="2">Pharmacy</asp:ListItem>
<asp:ListItem Value="3">Lab</asp:ListItem>
</asp:RadioButtonList><br />
<p style="text-align: center;">
<asp:Button ID="OkButton" runat="server" Text="OK" OnClick="OkButton_Click" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel"/>
</p>
</asp:Panel>
<ajaxToolKit:ModalPopupExtender ID="linkNewUser_ModalPopupExtender" runat="server"
TargetControlID="linkNewUser"
PopupControlID="panelSelection"
BackgroundCssClass="modalBackground"
OkControlID="OkButton"
CancelControlID="CancelButton"
DropShadow="true">
</ajaxToolKit:ModalPopupExtender>


protected void OkButton_Click(object sender, EventArgs e)
{
if (RadioButtonList1.SelectedItem.Text=="Patient")
{
Response.Redirect("~/PatientRegDetails.aspx");
}
else if (RadioButtonList1.SelectedValue=="1")
{
//this has to be closed
}
}

Here OKButton_Click event is not fired.
AnswerRe: Radiobuttonlist+AJAX Modal POPup Control Pin
Nisha Agrawal24-Sep-09 1:54
Nisha Agrawal24-Sep-09 1:54 
GeneralRe: Radiobuttonlist+AJAX Modal POPup Control Pin
deepikaan30-Sep-09 21:25
deepikaan30-Sep-09 21:25 
QuestionRe: Radiobuttonlist+AJAX Modal POPup Control Pin
Udayaraju5-Oct-09 19:16
Udayaraju5-Oct-09 19:16 
QuestionProblem in Default.aspx Pin
nazimghori23-Sep-09 23:33
nazimghori23-Sep-09 23:33 
AnswerRe: Problem in Default.aspx Pin
N a v a n e e t h23-Sep-09 23:37
N a v a n e e t h23-Sep-09 23:37 
AnswerRe: Problem in Default.aspx Pin
sashidhar23-Sep-09 23:47
sashidhar23-Sep-09 23:47 
AnswerRe: Problem in Default.aspx Pin
S.Dhanasekaran23-Sep-09 23:47
S.Dhanasekaran23-Sep-09 23:47 
QuestionRe: Problem in Default.aspx Pin
nazimghori24-Sep-09 3:01
nazimghori24-Sep-09 3:01 
AnswerRe: Problem in Default.aspx Pin
sashidhar24-Sep-09 1:35
sashidhar24-Sep-09 1:35 

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.