Click here to Skip to main content
15,921,028 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: pop-up Pin
Christian Graus14-Aug-07 0:01
protectorChristian Graus14-Aug-07 0:01 
GeneralRe: pop-up Pin
Priya S14-Aug-07 0:10
Priya S14-Aug-07 0:10 
GeneralRe: pop-up Pin
Christian Graus14-Aug-07 0:21
protectorChristian Graus14-Aug-07 0:21 
GeneralRe: pop-up Pin
nandhububbly14-Aug-07 1:02
nandhububbly14-Aug-07 1:02 
AnswerRe: pop-up Pin
nandhububbly14-Aug-07 1:03
nandhububbly14-Aug-07 1:03 
GeneralRe: pop-up Pin
Priya S14-Aug-07 1:20
Priya S14-Aug-07 1:20 
GeneralRe: pop-up Pin
Imran Khan Pathan14-Aug-07 2:07
Imran Khan Pathan14-Aug-07 2:07 
AnswerRe: pop-up Pin
nandhububbly14-Aug-07 2:40
nandhububbly14-Aug-07 2:40 
Hi next here u copy and past in to ur child page but u create calender , 2click ur calendar in code behind u past this .and i mention below code one line u give ur parent page name so c that line and give ur parent page name

protected void Calendar1_SelectionChanged(object sender, EventArgs e)
{
foreach (DateTime dt in Calendar1.SelectedDates)
{
Session["Date"] = dt.ToString("dd/MM/yyyy");
Page.RegisterClientScriptBlock("CloseWindow", "window.opener.document.forms[0].submit();window.close(); ");
Page.RegisterStartupScript("parentwindow", "window. opener.location.href = 'here give ur parentpage.aspx'; ");
}
}
}


after that before msg i sent one line for parent page in code behind u should past that line as bellow

protected void Page_Load(object sender, System.EventArgs e)
{
if(!Page.IsPostBack)
{

btnCalender.Attributes.Add("onclick","new_window('childpage.aspx');");
Session["Date"]=null;
}
if(Session["Date"]!= null)
{
TxtBox1.Text=Session["Date"].ToString();// note TxtBox1.Text is in which txtbox u need to copy the date that box
}

its works good
Thanks and Reg
nandha
QuestionHow to create a secure login page? Pin
Jagadeesh Jupalli13-Aug-07 23:39
Jagadeesh Jupalli13-Aug-07 23:39 
AnswerRe: How to create a secure login page? Pin
Christian Graus13-Aug-07 23:57
protectorChristian Graus13-Aug-07 23:57 
GeneralRe: How to create a secure login page? Pin
hellohello8614-Aug-07 0:51
hellohello8614-Aug-07 0:51 
GeneralRe: How to create a secure login page? Pin
Jagadeesh Jupalli14-Aug-07 1:39
Jagadeesh Jupalli14-Aug-07 1:39 
GeneralRe: How to create a secure login page? Pin
leckey14-Aug-07 4:56
leckey14-Aug-07 4:56 
GeneralRe: How to create a secure login page? Pin
Christian Graus14-Aug-07 12:14
protectorChristian Graus14-Aug-07 12:14 
QuestionAsp.Net with Oracle Pin
Malayil alex13-Aug-07 23:35
Malayil alex13-Aug-07 23:35 
AnswerRe: Asp.Net with Oracle Pin
Christian Graus14-Aug-07 0:27
protectorChristian Graus14-Aug-07 0:27 
Questionproblem with ajax dropdownbox Pin
anujose13-Aug-07 23:31
anujose13-Aug-07 23:31 
AnswerRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:05
protectorChristian Graus14-Aug-07 0:05 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:12
anujose14-Aug-07 0:12 
GeneralRe: problem with ajax dropdownbox Pin
N a v a n e e t h14-Aug-07 0:19
N a v a n e e t h14-Aug-07 0:19 
GeneralRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:22
protectorChristian Graus14-Aug-07 0:22 
AnswerRe: problem with ajax dropdownbox Pin
N a v a n e e t h14-Aug-07 0:19
N a v a n e e t h14-Aug-07 0:19 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:31
anujose14-Aug-07 0:31 
GeneralRe: problem with ajax dropdownbox Pin
Christian Graus14-Aug-07 0:40
protectorChristian Graus14-Aug-07 0:40 
GeneralRe: problem with ajax dropdownbox Pin
anujose14-Aug-07 0:49
anujose14-Aug-07 0: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.