Web Forms :: How To Open Popup Window In C# Application Without Browser Silently Blocking It

Jan 4, 2011

I can't use RegisterStartupScript('window.open...), because Chrome blocks the popup without even informing the userI can't use "onclientclick=window.open(..." in the markup, because I have to invoke code in the button click event handler before opening the popup window.I can't expect every user of the website to add the site as an exception in Google Chrome's popup blocker, since they'll assume it's an error on the website and not with the popup blocker

View 5 Replies


Similar Messages:

How To Open Aspx Page In New Browser Window From SilverLight Application

Oct 6, 2010

I want to add a button to my user control in SilverLight 4.0 application which will open a new browser window with an aspx in it when it is clicked.

Additionaly, can I lock the SL application until this new window is closed (Alike a modal dialog)?

View 2 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 :: Browser Popup Window Maximize Button Is In Enable State In Chrome Browser

Dec 14, 2012

I used javascript code to open popup window.Popup window "Maximize" button is inĀ 

disable state.But in Chrome it is in enable state.I want to make browser maximize button disable.

Below is my javascript code

function Call_PopUp(event, URL) {
window.open(URL, 'CustomPopUp', 'width=990, height=540, menubar=no,scrollbars =yes, resizable=no, top=50,left=50,toolbar=no,dialog=yes,minimizable=yes,maximizable=no');
}

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

Javascript - IE - Get Popup's Opening Window When Using Window.open (url)?

Sep 23, 2010

we are running a click-to-call service, my idea is basically like this: website have a link on their page, when the link is clicked, a web page(say it is popup.aspx) hosted on our server is popup, user can input their phone number, and click "call me" button to let the website call him. In the button click event, I want to get Request.UrlReferrer, then query the db to get website's phone. But in IE, Request.UrlReferrer is null(firefox is ok, not test chrome yet),my question is how to get opening window' url in IE? we put popup.aspx on our server because

our client website is not force to use asp.net. we have the control what we put on the popup window, and can modify the page just from our side, if we put the pop window on our partner's side, if we have 100 partner, and we change the page's design, we will notify everyone of them to change this, change that. we can implement a statics system to know how popup a day, which site is most popular,etc

View 1 Replies

Web Forms :: Get Value From Popup Browser Window?

Jun 28, 2010

i am writing an application, and i have a link on a page that opens its url in a new browser window. on this new window, i have an asp.net gridview with radio button on each row and each row has a staff_id, and staff_name column, and the gridview has datakeys as staff_id, staff_name.

my question is that i want to be able to select a row (using the radio button) and when user clicks a button on the new window, and i want to populate two textboxes on the parent window with the staff_id and staff_name values from the selected row(in the popup window), and if possible close the popup window.

View 1 Replies

Web Forms :: Open Second Popup Window?

Feb 3, 2010

how to open the second pop up window. as i always replace the extisting pop up window if type the following code:

Page.ClientScript.RegisterStartupScript(this.GetType(), "openpopup"
"<script language="javascript"></script>)o;

View 2 Replies

Web Forms :: Open A New Browser Tab/window Using C#?

Oct 11, 2010

Is it possible to Open a new browser tab/window using c#. I have query string info I don't want to put in a hidden field due to it showing on the client side. I do save the data in ViewState and encrypt the viewstate; however, I don't know how to access that information on client side.

I can access the viewstate data fine on Server Side but I need to open the new browser window on server side in order to access the ViewState. I may be wrong. Is there a trick to this?

I did find a way; however, on any other click after the initial click everything goes to a new window:

Control:

[code]....

View 1 Replies

Web Forms :: Open Up New Browser Window With C#?

Mar 9, 2010

How do you write C# code to open up a New Browser window with for example [URL]

View 4 Replies

Web Forms :: Open A Popup Window In C# Without Using RegisterStartupScript?

Aug 5, 2010

I can't use RegisterStartupScript('window.open...) because then Google Chrome silently blocks the popup window. I can't use javascript onclientclick in the markup, since I have to open the popup window after running some code in the button click event handler.

View 2 Replies

Web Forms :: Use "Window.Open" Method To Create A New Browser Window From C#?

Aug 25, 2010

I using VS2008 and C# for an ASP.NET web application. From within C# code, how to use the "Window.Open" method to create a new browser window? I know it can be done in ASP script code using Javascript but I would like to create new window from C# as desired.

View 11 Replies

Web Forms :: Open A Popup Window Using A Html Button?

Apr 20, 2010

how I would code to open a new popup window using an html button? The new popup will have a textbox in it so does anyone know how to do that with the code below:

[Code]....

View 8 Replies

Web Forms :: Open A Popup Window To Print After Sql Insert?

Feb 15, 2011

What I want is to pop up a window that is 100 x 100 after I do a sql insert and then print the page. In 1.1 it worked greate but in VS 2010 it seems not to work great always get errors. So this is what I am doing.

When user clicks on submit it rotates through a gridview ans saves data to a sql table. After this i want to open a small popup window and have the print options open with it, print the page and then it closes window on print. Here is where I am having trouble, the popup always gives me errors, i am using an update panel and I don't know if this is the problem or not.

[Code]....

View 3 Replies

Web Forms :: Open Browser Window And Populate From Code Behind

Sep 13, 2010

I have a variable, which contains a whole web page. Is there a way to open a new browser window and set the contents of this variable as the page? I don't mind if it's javascript, but it has to be able to hold a bit of data if this is the case.

View 6 Replies

Web Forms :: Open Another Page In A Popup Window When Click On Image?

May 2, 2010

How to open a page in popup window of Calendar size. The page contains a default asp.net calendar. In first page there is a formview and inside a formview there is an image. I want that when user click that image a popup will appear having calendar on that page.

View 4 Replies

Forms Data Controls :: Open Image In A Popup Window?

Jan 18, 2011

I have a repeater which lists (names of images) , i want when i click on an image it opens in a pop-up window.

how can i do that ?

View 3 Replies

Web Forms :: Open Browser Window From Windows And Send XML Data

Aug 10, 2010

I have a project where we need to launch a browser window from a desktop application and provide the newly opened page with XML data for it to process before the page fully renders itself.

Sub WinAppButton_Click
'Generate xml data
'Open url in browser and post xml to the page without any visible http request arguments showing.
End sub

Handling the xml data from the page_load is easy enough. Getting the initialization data to the page is the problem.

View 2 Replies

Open A Popup Window On Top Of A Popup Window

May 7, 2010

I have a scenario where I have a popup window open and that will have links to open up another window that's going to pop open on top of the already open popup window. I've tried all sort of tricks (javascript window.open, target="_blank" etc.) but nothing seem to work. It always was opening the page on the already opened popup window.

View 1 Replies

Web Forms :: Open New Browser Window From Gridview Selected Item Link?

Jan 26, 2010

I know this is probably a pretty normal pattern, but, I've never had to code it up. I'm using a GridView to display various items from a SQL query. I can do this without any problems. Upon selecting a specific item, I want to open a new page based on the selected row item link that passes some parameters to a SQLDataSource in the newly spawned window. I know I can use the javascript window.open function() to create a new window, but, I don't know how to pass the desired code to this new window.

View 1 Replies

Web Forms :: Making A Hyperlink Open A New Browser Window Full-Size

Jun 29, 2010

I have the following hyperlink code that opens a new browser window to display a page. The page (browser) opens not full size (maybe something like 500x500). How can I modify this code to make the new browser window open full-size?

[Code]....

View 4 Replies

Web Forms :: Distinguish Between Window.open Request And Copy Paste It In Browser

Apr 19, 2010

We have a page that is opened in the child window using window.open. Now the user will copy the child's window Url and copy-paste it in the browser. We need to restrict this scenario. How should we do this. I mean I need to know in my page load method whether the request has come from window.open or whether the user copy-pasted the Url on the Browser's Address bar.

View 7 Replies

Forms Data Controls :: Gridview To Excel - Open In The Same Browser Window?

Feb 3, 2010

I'm exporting the GridView to Excel. It works fine and I receive a prompt to Save/Open/Cancel the file although I need the file to be saved automatically in the provided (passed to the Export function) location and opened in the same browser window where the Gridview was.

View 2 Replies

Web Forms :: Open Word Excel PDF PowerPoint (PPT) Files In New Browser Window?

Mar 26, 2016

Below is the page and file is in local drive.

<asp:GridView runat="server" ID="gvDetails" AutoGenerateColumns="false">
<Columns>
<asp:BoundField DataField="Id" HeaderText="Id" />

[Code].....

View 1 Replies







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