Web Forms :: User Controls And Close The Popup Window

Mar 15, 2010

I inherited a poorly designed ASP.Net web site. Here are some of the main parts;

1. Default.aspx. This web page conatins several user controls that do the bulk of the work.
2. Alerts.ascx. Used by Default.aspx
3. Dashboard.ascx. Used by Default.aspx.
4. LabResults.aspx. Popup window called from Alerts.ascx

bear with me while I describe the scenario:

1. The user clicks a button on default.aspx and a page in Alerts.ascx is displayed. This works fine.

2. The user then clicks a hyperlink control on Alerts.ascx and the popup window LabResults.aspx displays. This also works fine.

3. The user clicks a button on the popup window. Here is where I am having problems. I want to close the popup window and do a post back but not to Alerts.ascx. i want to instead call dashboard.ascx and run a particular event which displays some patient info. I do not know how to pass control to the dashboard.ascx user control at his point. Presently, my popup window closes which is good but the Alerts.ascx page is still displayed. I want to close this page and open the dashboard.ascx instead.

View 12 Replies


Similar Messages:

Iframe / Showing The Report As A Popup - User To Be Able T Close Window?

Sep 11, 2010

I have been reading up on a few atricles, and am now vey confused on which is the best option and how to go about it.

I have an aspx page that has a gridview with x amount of records. Each record has a checkbox to selet that record for processing. When a user clicks a button it runs some vb.code behind which generates a file for all the records selected in the gridview. This works fine, however, I also want to display a report at the end.I created a rdlc report ("ItemListing") which I can display in a reportviewer. What I want to do is show this report as a popup / new window infront of he current aspx page , to allow the user to print or save . I also want the user to be able t close this window.

View 10 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

Web Forms :: Refresh And Close Popup Window?

Mar 5, 2010

I have all of my code into one ASPX file. Called Scheduler.aspx. I am using the DayPilot scheduler and the Obout Flyout. But i moved it all to one page to make it simpler. But one thing I am having probelms with is; when I save my popup it should close and refresh the page. And when I hit the close link it should close (which it does) and then refresh the popup when I click on it to open again (which it doesnt). Since I have this all on one form and I am calling the popup using the flyout I can't figure out how to do these.

My page is called: Scheduler.aspx

My Scheduler is called: dps

My flyout is called: EventFlyout

Right now I have the flyout opening from a label. So when I click on the label my flyout opens, I insert data and it saves to the database. But i have to close my browser and open another to get the data I just imputed to show.

View 9 Replies

Web Forms :: How To Close Popup Window Without Alert Box Message

Feb 8, 2010

I produce a popup window by adding a hyperlink to a table cell dynamically in my vb.net code behind. Here is the code:

Dim sHyperlink As
String =
"<a href=""LabPopup.aspx?RefNo=" & iLabRefNo &
""" target=""_blank"">" & strValue &
"</a>" objCellValue.Controls.Add(New LiteralControl(sHyperlink))

So on my web page, I will have a list of these hyperlinks and each have a different iLabRefNo. When I click on one of these links, the popup window does appear correctly.

I have a button on the popup window that closes the popup. But I get this message in an alert box when click on my button:

The webpage you are viewing is trying to close the window. Do you want to close the window?

If I click OK then the window close. But I just want to close the popup wondow without this message. What do I need to do?

Here is my code for the button to close the popup:

<asp:Button
ID="cmdLabPopupClose"
runat="server"
Text="Close"
OnClientClick="CloseWindow()"
/>
<script type="text/javascript">
function CloseWindow() {
window.close();
}
</script>

View 11 Replies

Web Forms ::close Window Itself When Popup Button Clicked

Aug 15, 2010

On successfull update a popup is appearing that "Data updated Successfully." with the Ok button. I used following piece of code:

Page.ClientScript.RegisterStartupScript(Me.GetType(),
"MyScript",
"alert('Record Updated successfully.!');",
True)
REQUIRED:

I want if user click OK button then window should also close.

View 10 Replies

Web Forms :: Close Popup Window By Server Side Code?

Jan 5, 2011

I open a popup window by client code. Now I want to do some calculation on this popup window & if it success then I want to save the calculation result in a session variable and close the window. I mean I want to click a button on popup window, it will do some calculation on server side and if it success the it will store the calculation result in a session variable and close the popup window.

View 6 Replies

Include Close Option In Popup Window?

Jan 10, 2011

< asp:ModalPopupExtender
ID="popupctrl"
runat="server"
TargetControlID="popup2"
PopupControlID="popupcontent" >
</asp:ModalPopupExtender>

this is my popup window code.. how can i include close(*) icon and make it work??

View 3 Replies

Popup Window From Javascript And Disable Its Close Button?

Jun 19, 2010

I have opened a pop up window from javascript.I want to do some work with this window

1- want to disable its close button

2- want to show this window always on top

3- want to change toolbar color.

View 6 Replies

AJAX :: Close A Popup Window Which Contains An UpdatePanel Using Javascript In Code Behind

Mar 22, 2011

I have a popup window (aspx page) which is used to save log messages to the DB. I want to close this popup as soon as the user clicks the save button and the message has been saved into the database. My issue is the popup does not close when I use an UpdatePanel in conjunction with an UpdateProgress control.

Pages and Controls: ImplantQuoteInfo.aspx, ImplantQuoteRevisionLogMessageAdd.aspx, ImplantQuoteRevisionLogMessageAdd.ascx

ImplantQuoteInfo.aspx: This page creates the popup windows using RegisterStartupScript

[Code]....

ImplantQuoteRevisionLogMessageAdd.aspx: This page holds the user control with the funcitonality

ImplantQuoteRevisionLogMessageAdd.ascx: This user control takes a message text and saves it into the database. The control uses an HtmlEditor inside an UpdatePanel and an UpdateProgress control.

Markup:

[Code]....

C# code behind:

[Code]....

PS: I am using .NET framework 4.0, Windows 7, SQL 2008 R2.

View 2 Replies

Continue The Process Even The User Close The Browser Window?

Apr 11, 2010

i need to develop a tool which will take a long of time while processing, lets say copying data with size 1 GB from one database to another,

i can develope a webform for that issue but i have a problem which is when the user close the browser the process will terminate!

what i need is when the user click on "copy" button (regarding to my previous scenario) the process continue even the user close the browser, and will not end untill the all data copied successfully to the destination place.

should i use windows service with my webform? or webservice ?

View 11 Replies

User Controls :: How To Pass Value From Popup Window To Parent Page

Nov 24, 2013

i want to pass the value of variable form popup page to main page. i have try to use the session but i can't because the main page is start before the popup page start.

View 1 Replies

.net - How To Know User Has Left Website Or Close Browser Window Immediately In Server Side

Sep 10, 2010

In ASP.NET, Session_End will be fired when the Session is time out then I can guess the user has left or close the Browser window in this method. But there is some delay till time out, is there any better solution?

View 2 Replies

Web Forms :: Refresh Parent Window On Close Of Chlie Window

May 14, 2010

I have created an intranet application in ASP. From my main web page I am opening a web browser window and adding a record to database from that new window. Now on close of that window I want to refresh my main web page to reflect the database changes. My backend is "ms access" Also on the other hand I also want to disable the closing button of web browser.

View 2 Replies

AJAX :: Modal Popup Close After Postback Event In An Ascx File (user Control)?

Feb 15, 2011

I have an aspx page with multiple modal popups. These modal popups are trigger in the page behind code using .Show() and .Hide().

This is what I have in the .aspx page for the particular modal popup under discussion:

[Code]....

The example below demonstrates the type of calls I am making to the modal popup extenders. Basically using the Datalist item command, the datalist commands are responsible for triggering my modal popups.

[Code]....

They all work fine after postbacks except the "activityReport" case (the last one). The only difference with this modal popup is that it contains a user control and all the postbacks are happening in the user control. So the problem is that in the last case whenever a postback happens in the user control then the modal popup is close.

1. If I separate the modal popup and place it in a page all by itself and trigger it to .Show() through a button click in the page behind code then the modal popup doesn't close. See below example.

[Code]....

2. The button click event in the test page looks as follow:

[Code]....

View 2 Replies

On Close Button Click On Child Window,parent Window Refreshes?

May 20, 2010

Refresh the Parent Window. I open the child window,I want that on close button click on child window,parent window refreshes

Code:

[code]....

I searched all on the net & find the above soln,But its not refreshing.when i click on button1,then some Pop up appears see in Pic(with buttons Retry & Cancel). When i click on Retry again the child window loads Then again i click on button1,again popup appears & so on & on.

View 10 Replies

Open A Popup Window From User Control?

Oct 27, 2010

I would like to open a popup window from user control on button click event. I am using the following code but I am not able to open new window

[Code]....

View 4 Replies

How To Get A Popup Window When Ever User Clicks On A Button In C#

Apr 24, 2010

I want to develop the same future in C# , that is there in asp.net (MODEL POP UP) .

when ever i click on the button, that should come up with a panel to enter the values.

View 9 Replies

Popup Window To Enable User To Edit Rows Of Gridview

May 24, 2013

I need a popup window to enable a user to edit rows of a gridview. This part is done and working. Now, i need to change this popup to contain a tab container instead so that more options can be added. This, however i have had no luck getting to work. Have tried finding an example detailing how this can be done, but no luck. I am using the ajaxtoolkit with SharePoint 2010 and asp.net 3.5

View 5 Replies

Web Forms :: Return True Or False From Popup Window To Parent Window

Sep 25, 2010

I am trying to return true or false from popup window to the parent window. Actually the parent window has a button control, which on click popup another window. The popup window holds some emailing data and a button "send". This "send" button onclick send email. Now I want to return true if the email is successfully sent otherwise false, to the parent window. Depending on returning value a label present on parent window displays a text message. But I am not able to implement it. Because it might happen that the popup window is blocked by web-browsers popup blocker or popup window is accidentally closed by user. So how can I confirm to parent window whether or not the email is successfully sent?

View 5 Replies

Web Forms :: Call Parent Window Method From Model Popup Window?

Nov 17, 2010

i have a page Parent.aspx,, and this is responsible to open the window as a model dialog(model.apsx). model.apsx has OK button when we click on this button then server side method called to save the data. while saving the data it return the id of saved data. i need this id on my Parent.aspx.Cs file, so how can i get this id on my Parent.aspx.cs file?

View 5 Replies

Web Forms :: Retrieve Value From Popup Window Opened Using Window.open?

Apr 28, 2010

I am trying to open a popup window from main window using window.open() method. How to get back the value from the called popup window to the calling window in vb.net, basically i need to get back the value and populate in the text box available in the main window.

View 3 Replies

Web Forms :: Passing Variables Between Parent Window And Popup Window

Apr 29, 2010

I have a page wich opens a popup window. I want to pass some variables, like some textbox.text and 2 dataTables from parent window to the popup window. And then I'll have to return some vars from popup window to parent window. So what is the best way to do this,

1) using Sessions("")

or

2)passing the variables as parameteres:

LinkButton1.Attributes.Add("onclick", "window.open('popup.aspx?field1=" & value1 & "&field2=" & value2 & ......

I don't know if it's appropiated passing 8 or 10 variables as the option2 because the user will see a very long url with all the variables, but maybe is more efficient than using Sessions.... Anyway, could somebody clear me up?

View 12 Replies

Web Forms :: Accessing Textbox In Parent Window From Popup Window

Feb 15, 2011

I am using a master page in my project. I opened a popup window from content page. What I want to do is, when I close the popup window, the data in the textbox available in popup should be assigned to a text box in parent form. But I dont want to refresh the parent window when I close the popup window. Can any one tell me how can I access textbox in a parent window from a popup window without refreshing the screens.

View 3 Replies

Web Forms :: Open Popup Window With In Another Window

Aug 26, 2010

I have an aspx page which contains a user control(a gridview). When I click on a link button in the gridview, I will open a popup window(An aspx page) successfully. When I click on save button in the popup, I am saving the details and refreshing the parent page successfully. I have a button in popup window. My requirement is:

When I click on the button inside popup window1, I would like to open another popup(aspx)(Say popup window2) in a new window without closing popup window1. When I save some changes in popup window2 and click on save button in popup window2, I need to close it and refresh popup window1.

View 2 Replies







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