Web Forms :: Close Window After Downloading File?

Oct 31, 2010

I have a page that has a note to the user about the file they're about to download and a button to click to start the download. When they click the button, it does a Response.Redirect to another page with the following code in its Page_Load:

Response.Clear()
Response.Buffer = True
Response.AppendHeader("Content-disposition", "attachment; filename=" & FileName)
Response.AppendHeader("Content-length", FileSize.ToString)
Response.ContentType = "application/download"
Response.WriteFile(Page.ResolveUrl(FilePath))
Response.Flush()
Response.End()

I want the download to start and then I want this page (which is a tab in the browser) to close.

The code to download the file works fine. I just can't figure out how to close this tab when it's finished. I've read a lot of forum posts from people who are using similar code, but none of the suggestions seem to work for me. I understand that Response.End means that I can't put any more code this page; it will be ignored. But how do I get this tab to close?

View 4 Replies


Similar Messages:

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

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

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

Forms Data Controls :: Downloading Pdf Without Prompt Window To Local Computer Then Printing Automatically

Mar 30, 2011

i have two tasks to accomplish. There are several pdf files (invoices) sitting in web server. My tasks are 1) enabling Olga to download multiple invoices into her local computer WITHOUT prompting any dialog box. 2) printing these files then automatically by default local printer from her desktop computer. How is possible this? She has birthday soon. No gift could be better than this solution as she has to open each pdf separately and hit print button about 40 times a day.

View 1 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 :: How To Close Window And Return To Index.aspx

Jan 20, 2011

I create a page index.aspx and another inserir.aspx

The index is the master and the inserir.aspx is the popup... The popup is a insert form and works fine but, when it inserts I want to close the window and return to index.aspx...

[code]....

View 9 Replies

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

Web Forms :: Fire A PostBack Event On A Page When Close A Window?

Mar 26, 2010

The program is written using dotnetnuke and c#

Im facing the following problem. I have a aspx page (test.aspx) where I have a form what I want to do is when I hit a button on the test.aspx I open another window (getCoordinates.aspx)where I do some things and create some session variables.

When I close the getCoordinates.aspx I want to call the page load of the test.aspx so I can make use of the session variables I created and fill some textboxes

How can you refresh the 'parent' page when you close a 'child' window

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

Web Forms :: Activate Event Or Postback In A Page After Close Another Window?

Nov 3, 2010

I have a main page, when i click a button, appear another window. When i close the another window, i wanna make one loop for fill my fields in the main page. How i can do that? Activate some event or something like that?

View 2 Replies

Web Forms :: Cannot Close The Window In Mozilla And Chrome Gives Scripting Error

Jan 24, 2016

Please click <a onclick="self.close();" href="#">here</a> to close this window. this is my code .

when i submit in chrome and mozilla it shows the error.

" script must not be allowed to close a window that was not opened by that same script."

I tried with

function quitBox(cmd) {
if (cmd=='quit') {
open(location, '_self').close();
}
return false;
}

but it does not work for me

window.open('', '_parent', '');
window.close();
and also with this script.

how i close the tab on clicking the close tab.

View 1 Replies

Web Forms :: Call Server Side Method On Browser Window Close Button

Oct 26, 2012

How to call the server side method on browser window close button...

View 1 Replies

How To Close A Pop Up Window

Sep 3, 2010

I am using this code.This pop up window pops up when I clicks a button on the main page.Now I want the pop up window to be closed if the password is successfully changed and reload the main page,but if the password is not changed then refresh the pop up window again.

Here is the code.

<asp:Textbox id="curnt_paswrd" textmode="Password" runat="server" />

View 1 Replies

Web Forms :: Secure File Download / Hide File Path And Location While Downloading Files

Jan 14, 2013

I have made an application where I am displaying the .pdf , .doc , .docx  files. These files are uploading from an Admin Panel.When user place a mouse pointer on download icon provided in front of every file, it shows the complete path where it’s get saved.I want to avoid this path visibility even when user place mouse on download icon and even if it Inspect an element (as most modern browser will have this functionality).

View 1 Replies

Web Forms :: Downloading A File - File Name Is Shown Incorrectly On Opening

Apr 21, 2010

we are working on a file download page. We want to download a file with a name with spaces and accents. Although the filename is shown correctly on the filedownload dialog, when we click open, the file name is shown with %e1%ba%a3n%20... on notepad. ('Save as' shows the correct name) This problem only happens in Internet Explorer.

Is there anyway we can Display the file name correctly (on the target application) after opening it (without saving) from file download dialog ?

We use this code to set the filename :

fileName = Server.UrlPathEncode(fileName);
Response.AppendHeader("Content-Disposition", "attachment; filename="" + fileName + """);

View 6 Replies

C# - How To Close Html Window When Click Button

Oct 14, 2010

I have asp.net button "OK" in html popup window. I after my logic done how close that popup window it self?

<asp:Button Id="btnOK" runat="server" AccessKey="<%$Resources:
wss,multipages_okbutton_accesskey%>" Width="70px" Text="<%$Resources:wss,
multipages_okbutton_text%>" OnClick="btnOK_Click" />

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

One Webform And Two Popups - Parent Window Close

Nov 29, 2011

I have one webform and two popups. I am opening 1st popup using window.open method from my webform and it is working fine. then i am opening 2nd popup as showmadaldialog from 1st popup.

my second dialog have one button and if i click the button my two popup's(one popup and one dialog) should be closed and my webform should be appear.

currently am able to close 2nd popup. but am unable to close 1st popup from second popup.

[note : two popups are modal dialog] ....

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

State Management :: Session Expire On Window Close?

Oct 26, 2010

I want to expire session when wndow is directly closed. I have master page.

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

Web Forms :: Downloading A File With C#?

Aug 10, 2010

i am making a gridview in which textfield of password should match with the password stored in the database (table) .As soon as that happens, the file should be ready to download . now the problem is that the code is niether working nor showing any error, which is very sarcastic.

if (txtval.Text != null || txtval.Text !="")
{
if (txtval.Text == ds.Tables[0].Rows[0]["FilePassword"].ToString())
{
lblmessage.Text = "File has been downloaded successfully.";
WebClient fileReader = new WebClient();..........

View 2 Replies







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