Web Forms :: How To Close Child And Parent Page And Redirect To New Page

Oct 27, 2010

Following is my requirement :

I have 3 asp.net web pages. From the 1st page i am opening showmoadlDialog(2nd page) in which(2nd page) i am storing some value in session(Ineed to do this here only) and checking some count which is coming from database, If count is Zero it will display message but if some value is there and then if i click on Ok button it will redirect to 3rd page. And close the 1st and 2nd Page.

how to do this ?

When i am clicking on Ok button it is showing some cofirmation message(Do you want to close this window) but this i dont want.

View 9 Replies


Similar Messages:

Web Forms :: Redirect Parent Page To Error Page If Error Occurs In IFRAME Child Page

May 7, 2015

I have a data driven asp.net website with frames on the top, left, right and center screen.  If a page generates an error on any of the frames, I want to redirect the whole site back to the Default.aspx.  Currently, when a frame page errors in one of the frames, that frame gets the error pages.  Site is URL....  Is this something that can be handled?

View 1 Replies

Web Forms :: Parent-child Web Form: How To Close Dialog Box And Return Values To Parent Form?

Jan 24, 2010

In my website I have two forms: parent form and child form(dialog box). Their expected behaviour is like this: if clicked on 'show' button on parent form, a dialog form opens that displays a gridview. In dialog form, if clicked on 'select' button it closes
itself and returns value in selected row back to parent form.

To achieve this I write following code (.cs) : in parent form:

void ShowBtn_Click(object sender, EventArgs e)

{

StringBuilder jScript = new StringBuilder(); [code]....

Now problem is: the code in parent .cs works fine, it opens the dialog properly. But when clicked on 'select', instead of returning back to parent, it opens the same dialog again in new window. This newly open window says "Done but error on page" at left bottom.

View 6 Replies

Possible To Refresh Parent Page From Child's Child Page Using Javascript?

Apr 26, 2010

Is it possible to refresh parent page from child's child page using javascript.

I have a webform which opens a child window, a button on child window closes the present child window and opens a subchild window. Now a button on subchild should close the window and refresh the parent form.

[code]....

View 3 Replies

Web Forms :: Passing Value From Child Page To Parent Page?

Jan 11, 2011

In the parent page i'm displaying all the user details and one of the detail is the list of accessible clients in a list box. the clients can be removed or added using the add or remove images next to the list box.

Clicking on the Add image will show you the list of available clients in a new page(child) and also showing currently available clients to the user with checked status.

Let me explain how the available clients for the user is displayed in the child page. In the parent page load on the 'Add' image 'OnClientClick' i'm passing the ClientId of a hidden field in which all the selected clients for a user is stored.

The problem i'm facing here is when i altered the selected clients in the child page and clicking on the OK button will change the value of the listbox in parent page using the clientID of the listbox which i'm passing, but if i once again click the 'Add' button it shows the original values which is stored at the time of parent page load. The problem is i'm not doing any postback here so that the original values registered during 'OnClientClick'of 'Add' button is not altered.

View 2 Replies

Web Forms :: Open The Child Page Into Parent Page?

Jun 3, 2010

Any out there who knows how to open the child page into parent page,

suppose if i have page say Default.aspx ,and one anchor in this page,WHen i click on the anchor

let say <a href="Content.aspx"></a> ,want to display the content of page Content.aspx into the panel of Default.aspx .

View 4 Replies

Possible To Call A Server-side Event On A Parent Page When A Child Page Closes

Jan 13, 2010

I have a parent page with two data controls. I want to be able to open a child window, do something on it, and when it closes I want to rebind only one of the two data controls on the parent page. I have the control I want to update within an UpdatePanel so would like to call rebind it and call UpdatePanel.Update().

View 2 Replies

C# - How To Access Hidden Field Of Parent Page From Child Page.

Aug 16, 2010

In my ASP.NET main page I have one hidden field and and one button. When the user clicks the button I am showing the pop up (child page). I need to access a Hidden field while the pop up is loading. How could I access the Hidden field using c#?

View 2 Replies

Passing An Array From Child Page To Parent Page?

Mar 15, 2010

I have a listbox containing a list of the datas In the child page. Now, if a user selects a multiple number of the items of the listbox, i have to pass all of them through the session.

So, i want to create an array in the child page and pass the values in the session and in the form of an array to the parent page.

View 16 Replies

Disabling Parent Page When Child Page Is Loaded?

Jul 14, 2010

I have to disable our parent page(Complete gray out and non functioning) when child page is loaded. Once I close child page then I could perform any action at my parent page.

I can not use Div at my parent page because it may be many page so i have to controlled it from child page only.

View 2 Replies

AJAX :: How To Close Modalpopup And Refresh Parent Page

Mar 8, 2011

I've a parent page with a long form. I am opening ajax modal popup extender on the click of a radio button.

Parent.aspx

[Code]....

In child.aspx, I've another long form. When the submit button is clicked, I am doing some processing, after that need to close the modal popup window and refresh my parent page, without disturbing the values already entered in the parent page.

child.aspx

[Code]....

child.aspx.cs

[Code]....

My questions are

1. How do close the modal popup?

2. How I do refresh the parent.aspx without disturbing existing values? My browser is IE, no firefox since it's in intranet.

View 2 Replies

Javascript - Refresh Parent Page After Greybox Close?

Dec 24, 2010

I have a blog, where people can make comments. I've now decided to put the "writecomments.aspx" file in a Greybox popup-window. It works, but I want to close the window from codebehind (or javascript) after the comment is written. And then I want to refresh the blog page (the parent page) to show the new comment.

This is the code that opens the greybox (writecomments.aspx) page:

<a href='WriteComments.aspx?BlogId=<%# DataBinder.Eval(Container, "DataItem.id") %>' rel="gb_page_center[500, 500]">Skriv kommentar</a>

In the writecomments.aspx file, I just have 2 textboxes and 1 button (save-button). How can I make the greybox window close itself, and then somehow refresh the blog.aspx? Or maybe just a specific updatepanel for the current comments?

Edit

I got it working, I had to put this code in the codebehind, after the db-insert: Page.ClientScript.RegisterStartupScript(this.GetType(), "close", "parent.parent.GB_hide();", true); And for the refresh of the parent page, I edited the gb_scripts.js file on line 12 from false to true: this.reload_on_close=true;

EDIT AGAIN

Actually, I modified it a bit, so, I put the gb_scripts.js file back to it's default state, and I just just the followig line of code in the WriteComments.aspx codebehind file, just after the db-insert:

Page.ClientScript.RegisterStartupScript(this.GetType(), "close", "parent.parent.window.location.reload();parent.parent.GB_hide();", true);

Now, the Greybox is closing, and then, the blog page is refreshing, just like I want :)

View 1 Replies

Web Forms :: How Open A Website Page Created By Using Parent And Child Frame

Sep 16, 2010

i create a web site using parent and child frame when we login

[URL

this page is opend but we type in address bar

[URL]

this page also open in full explorer but i want this page is not opened when we type in explorer

[URL]

View 3 Replies

Web Forms :: Find Control Of Parent Webpage From Child Page Under Iframe?

Oct 19, 2010

I Have a webpage suppose ParentPage.aspx which contains a iframe. Under iframe i am calling another webpage Childpage.aspx . Now i want to access ParentPage controls from ChildPage and change the property of that control.

how it is possible ?

Below i am writing a code which i am trying. In this code Page.PreviousPage is always null .

[code]....

View 4 Replies

Web Forms :: Newly Added Data In The Child Window Is Not Reflecting In The Parent Page?

Nov 17, 2010

I am opening a new window on clicking the button using folowing code

[Code]....

In a newly open window their is a form. on clicking the Save button i am cloging the clild window and refereshing the parent page using below mention code

Page.ClientScript.RegisterStartupScript(this.GetType(), "close", "<script language=javascript>window.opener.location.reload(true);self.close();</script>"); Upto here everything is fine. but the newly added data in the child window is not reflecting in the parent page.

[Code]....

View 5 Replies

Web Forms :: Trying To Redirect Back To Parent Page From Popup

Mar 2, 2010

once i click on add button i just need to close the popup window and redirect the new page back to the parent, but what happened the page opens upwith the popup screen.

[Code]....

View 12 Replies

Close Aspx Page That Is Redirect From Handler?

Jan 20, 2011

In my application I try to close opened window using javascript function.

function Close_Window() {
var myWin = window.open('', '_parent', '');
myWin.close();
}

this function is used in 3 aspx pages. That page will open from mail means my application is used for sending Mail. In that such as normal newsletter there will be three footer links like UnSubscribe,Forward A Friend,Change E-Mail address. So on click of close button for above these three pages I had written that code. The page will be opened from "ashx" file. And I try to close it using Javascript. So close button is working when I direct click on the above three links.

But by right clicking on that I open it in new window or new tab close button is not working. So how can I close aspx page using javascript or in code behind. My purpose is page should be close any how by javascript or by code behind. I am opening that page using ashx handler.

View 1 Replies

AJAX :: Close ModalPopupExtender And Redirect To Another Page

Sep 24, 2012

I used these code for popup window

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<%--<asp:Button ID="btnShow" runat="server" Text="Show Modal Popup" />--%>
<asp:LinkButton ID="LinkButton1" runat="server"></asp:LinkButton>
<!-- ModalPopupExtender -->
<cc1:ModalPopupExtender ID="mp1" runat="server" PopupControlID="Panel1" TargetControlID="LinkButton1"
CancelControlID="btnClose" BackgroundCssClass="modalBackground">

[Code] ....

It closed popupwindow at first I replace this code

CancelControlID="btnClose"
CancelControlID="btngo"

But when i did it it just closed popmenu and didn't run btngo_click event ....

View 1 Replies

Web Forms :: Refresh DropDownList On Parent Page When Popup Child Updates Data Or It Closes

Jun 25, 2012

I have a web form that contains a dropdownlist which shows list of cities in it. I have an add button on click of which I am opening a Popup window to open a new page that contains a text box where in i am entering new city name and submit button.

I want that after click submit button the window should be closed and on the parent page the dropdownlist gets refreshed with the new value. I am able to do it but the whole page gets postbacked which I do not want. I have added the dropdownlist in the update panel but not able to do the partial postback.

View 1 Replies

Forms Data Controls :: Pass Value From Child (popup Window) To Textbox Within Listview In Parent Page

May 25, 2010

I have a listview that has n rows.

Within the EditItemTemplate and InsertItemTemplate I have a cell that has a textbox and a button.

When the button is clicked a popup window is shown, where the user can upload a picture. The name of the uploaded picture is retrieved.

Now I want to send that picture name back to the textbox within the listviews EditItemTemplate or/and InsertItemTemplate (that is ofcourse one at a time depending on what the user is doing, inserting or editing a row).

The code I have written so far looks like this. The below code has been abbreviated

[Code]....

The code behind looks like this (also abbreviated). Actually I don't think the code behind is needed, since its mainly javascript from the popup window (child page), but nevertheless here it goes.

[Code]....

And at last the child page / popup page.

Well there is not anything to see here, cause I'm using the Telerik RAD upload control, which is doing everything for me.

However the line below may be of interest. Here I'm taking the name of the uploaded file (picture) and printing it to a label.

[URL]

View 2 Replies

C# - How To Refresh A Parent Page When Child Window Is Closed

Feb 21, 2011

how to refresh a parent page when child window is closed.

View 2 Replies

UserControl - Accessing A Child Control In The Parent Page?

Nov 3, 2010

If for example my userControl has a CheckBox called IsGreatCoder and the userControl is embedded in a main page (parent page).

I normally have gained access to the IsGreatCoder.Checked value in the main-page by exposing it through a public property that I have to manually write (say "IsAGreatCoder").

If UserControl is included in the main page as "userControl1", then I would access it as "userControl1.IsAGreatCoder".

But, I was wondering if there was anyway to declare the UserControl such that all the UI controls added to it were declared as being public, that way allowing me to gain access to the actual controls in the main page (the parent).

Essentially I would like to be able do something like userControl1.IsGreatCoder.Checked instead of having to implement a property.

The reason I want to do this is that I want to have access to many more of the check-box's properties and it would be a pain to implement each one as a public property.

View 1 Replies

Web Forms :: Close Popup Window And Open Page In Parent Window?

Mar 10, 2011

I have a login page that is loaded in popup window (colorbox) and after user logs in it should be closed and parent window should be loaded with new page.

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Do While reader.Read()
If Trim(reader("ZAP").ToString()) = Trim(textBoxZap.Text) Then
Session("A") = "1"
Response.Redirect("~/default.aspx")
Else
lblErr.Text = "incorect"
End If
Loop

So once the buton is clicked and user name and password is corect popup window should be closed and user redirected to default aspx.

View 1 Replies

C# - Call Child Iframe Method From Parent Aspx Page?

Jul 26, 2010

I've created one aspx page Default.aspx. It contains iframe with child.aspx. File Child.cs contains web methods which should be called by parent page.

As I understand I need to receive the instance of Child class so then I'll be able to them call. How can I make this?

Default.aspx (Parent page)

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Parent_Child_Iframe._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>.....

So How I can call getResultData () from Child.aspx.cs by clicking Button on the parent page.

The main difficulty is that I can't use Javascript to collect the information from TextBoxes because the task is more complicated and I can use only server methods.

View 1 Replies

C# - Redirect The Parent Page From IFrame?

Jan 19, 2010

I am using an IFrame, and from this IFrame I want to redirect to another page.

how to do this without any JavaScript, ie, no window.location.

Response.Redirect shows the page in the IFrame, but I want to show page as a main page.

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved