Click here to Skip to main content
15,887,434 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
QuestionPopuup window in javascript is not displaying the window title Pin
meeram39523-Sep-09 23:17
meeram39523-Sep-09 23:17 
AnswerRe: Popuup window in javascript is not displaying the window title Pin
Nisha Agrawal24-Sep-09 2:55
Nisha Agrawal24-Sep-09 2:55 
GeneralRe: Popuup window in javascript is not displaying the window title Pin
meeram39524-Sep-09 19:49
meeram39524-Sep-09 19:49 
AnswerRe: Popuup window in javascript is not displaying the window title Pin
Nisha Agrawal25-Sep-09 2:31
Nisha Agrawal25-Sep-09 2:31 
Question[Message Deleted] [modified] Pin
VikashGohil23-Sep-09 22:13
VikashGohil23-Sep-09 22:13 
AnswerRe: CreateObject Not Working in VBScript Pin
Manas Bhardwaj23-Sep-09 22:21
professionalManas Bhardwaj23-Sep-09 22:21 
Questionhow tochange the order of gride view colunm . Pin
rinku soni 2323-Sep-09 21:59
rinku soni 2323-Sep-09 21:59 
AnswerRe: how tochange the order of gride view colunm . Pin
Vimalsoft(Pty) Ltd23-Sep-09 22:03
professionalVimalsoft(Pty) Ltd23-Sep-09 22:03 

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.