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


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

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

Forms Data Controls :: Click Image To Open New Window?

Jan 26, 2011

[Code]....

What would I do to make the image click able and bring up the image in a small IE window?

View 6 Replies

Data Controls :: How To Open Popup Window On Click Of Link Button Inside GridView

Oct 8, 2013

<a href="display.aspx?code=<%# Eval("code")%>"> click </a>

opening a new page with a parameter value as shown

a javascript with a url with any querystring is a normal.

i get the parameter  value in the Eval("code") only.

the new pages opens as a normal page and not as poup

View 1 Replies

Web Forms :: To Open Window In New Page On Button Click?

Sep 28, 2010

Here's my code

[Code]....

My url here opens in same page...how can i open my url in new page...redirecting to diff pages on each condition..how can i use windows.open function here to open up link in new window.

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

C# - How To Open A Popup Window And Return Values To The Parent Page

Mar 6, 2010

how to open a popup window and return values to the parent page

i.e passing value fom popup window to parent form.

(The child window contain textbox with a button. Once the value entered in the textbox the value entered should be updated in parent window from child window)

in asp.net web application using C# ..

View 1 Replies

AJAX :: Modalpopupextender Can't Disable The Parent Page When Popup Window Is Open

Dec 23, 2010

[Code]....

modalpopupextender can't disable the parent page when popup window is open

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

Web Forms :: On A Button Click .aspx Page Open New Window Retrieving Data From Another Xml File

Feb 2, 2011

I am using VS 2005.An 1.aspx page is there, retrieving data from an xml file and having a button.On a button click same 1.aspx page should open new window retrieving data from another xml file with the help of query string.

View 3 Replies

Web Forms :: Click Imagebutton Open Window.open In Class 2.0

Sep 11, 2010

Click imagebutton open window.open in class asp.net 2.0

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

Forms Data Controls :: Open An Image In New Window On Clik Of Image Icon

Sep 17, 2010

I bind the Image to Grdview Column like below

[Code]....

Now how i add the clik event to image control and open the image in New window any Idea?

View 6 Replies

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

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

How To Open Popup Window In C#

Aug 5, 2010

I can't use RegisterStartupScript('window.open...), because Chrome blocks the popup without even informing the user.

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

So what other options do I have?

View 1 Replies

Forms Data Controls :: Open Popup Window In Datalist Hyperlink With Databinding?

Feb 16, 2010

How to open popup window in datalist hyperlink with databinding

my code is:

[Code]....

View 2 Replies

Web Forms :: Open URL In New Window On Button Click?

Apr 20, 2010

I want to open a new window on click of a button.

I need to pass the query string in the url so it needs to be a server side event.

How can this be done?

View 6 Replies

Web Forms :: Open A New Window In Button Click?

Mar 7, 2011

in my application there is a button to generate pdf file.my requirement is after generate the pdf file i want to display it in a new window.i think my requirement is clear for all.

View 3 Replies

Open Popup Window With Js Code

Sep 14, 2010

I did a little research and all i can find is binding the js to a control that will fire the popup.Is there a way that i can use in code so i can trigger a popup window from vb.net code? If it is to complicated then is there a way to have a button set with the popup message i want the user to view and make the button click with .net code so the onclick event will fire and show the popup window?

View 13 Replies







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