Click here to Skip to main content
16,007,885 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: can use two events in the same button Pin
_AK_23-Aug-06 1:36
_AK_23-Aug-06 1:36 
GeneralRe: can use two events in the same button Pin
Ramasubramaniam23-Aug-06 3:46
Ramasubramaniam23-Aug-06 3:46 
GeneralRe: can use two events in the same button Pin
Kissy1623-Aug-06 19:21
Kissy1623-Aug-06 19:21 
GeneralRe: can use two events in the same button Pin
_AK_23-Aug-06 19:36
_AK_23-Aug-06 19:36 
GeneralRe: can use two events in the same button Pin
Kissy1623-Aug-06 22:03
Kissy1623-Aug-06 22:03 
GeneralRe: can use two events in the same button Pin
_AK_23-Aug-06 22:08
_AK_23-Aug-06 22:08 
GeneralRe: can use two events in the same button Pin
Kissy1623-Aug-06 19:40
Kissy1623-Aug-06 19:40 
QuestionPop Up Calendar not working inside Master Page Pin
Ashishhere23-Aug-06 1:06
Ashishhere23-Aug-06 1:06 
Hi,

I have got a button inside a page which is which is derived from a Master Page.Button Click of this button pops up a child calendar window i need to collect the selected date back in a textbox availabale on the parent form, but i am unable to get the desired results. Please let me know what all modification i do need to make in the following code to get the desired results:

Code in the button Click Event:--



string id = txtSDate.ClientID;
string str = " window.open(" + "'../Components/calendar.aspx?formname=frmGlobalScheme." + id.ToString() + "','Details','height=260,width=300,resizable=No,scrollbars=Yes,menubar=No')";
Response.Write(str);


Code in Calendar SelectionChanged Event:--

string strjscript = "";
strjscript += "window.opener." + HttpContext.Current.Request.QueryString["formname"];
strjscript += ".value = '" + Calendar1.SelectedDate.ToString("d") + "';window.close();";
strjscript += "</script" + ">";

Response.Write(strjscript );


Thanks in Advance
AnswerRe: Pop Up Calendar not working inside Master Page /same with me Pin
Naveed Kamboh23-Aug-06 3:10
Naveed Kamboh23-Aug-06 3:10 
AnswerRe: Pop Up Calendar not working inside Master Page [modified] Pin
ToddHileHoffer23-Aug-06 3:11
ToddHileHoffer23-Aug-06 3:11 
Questionanchor not firing in contentplaceholder1 Pin
TintinV3ck23-Aug-06 0:37
TintinV3ck23-Aug-06 0:37 
QuestionIs Microsoft Obseleting the VB 6 support Pin
imshally8123-Aug-06 0:33
imshally8123-Aug-06 0:33 
AnswerRe: Is Microsoft Obseleting the VB 6 support Pin
Not Active23-Aug-06 1:30
mentorNot Active23-Aug-06 1:30 
GeneralRe: Is Microsoft Obseleting the VB 6 support Pin
imshally8123-Aug-06 19:55
imshally8123-Aug-06 19:55 
Questionhow to update my listbox Pin
Kissy1622-Aug-06 23:59
Kissy1622-Aug-06 23:59 
AnswerRe: how to update my listbox Pin
Paddy Boyd23-Aug-06 0:45
Paddy Boyd23-Aug-06 0:45 
GeneralRe: how to update my listbox Pin
Kissy1623-Aug-06 0:50
Kissy1623-Aug-06 0:50 
GeneralRe: how to update my listbox Pin
_AK_23-Aug-06 1:40
_AK_23-Aug-06 1:40 
GeneralRe: how to update my listbox Pin
Paddy Boyd23-Aug-06 5:19
Paddy Boyd23-Aug-06 5:19 
QuestionDatagrid update problem Pin
ypsyong22-Aug-06 23:55
ypsyong22-Aug-06 23:55 
AnswerRe: Datagrid update problem Pin
Paddy Boyd23-Aug-06 0:46
Paddy Boyd23-Aug-06 0:46 
QuestionNeural Networks Pin
Vsree22-Aug-06 23:51
Vsree22-Aug-06 23:51 
AnswerRe: Neural Networks Pin
Sathesh Sakthivel23-Aug-06 0:04
Sathesh Sakthivel23-Aug-06 0:04 
GeneralRe: Neural Networks Pin
Vsree23-Aug-06 0:12
Vsree23-Aug-06 0:12 
GeneralRe: Neural Networks Pin
Paddy Boyd23-Aug-06 0:47
Paddy Boyd23-Aug-06 0:47 

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.