Web Forms :: OnClick, Add Ddl Selection To Url And Open New Window?

Mar 6, 2010

I am trying to open a new window on a button click event. I have seen several similar threads on this topic, but none worked for what I am trying to do.What I am trying to do...

- select an item from a dropdownlist

- click a button

- on the button click, open a new window (preferably 500 x 600) and go to a url based upon the selected ddl item

What is actually happening...

- a new tab is opening

Here is the .aspx

[Code]....

When the user selects an item in the dropdownlist and then presses the button, a new window opens and goes to a url based upon the selecteditem in the dropdown list. For example, if the user selects "10" from the ddl, then pressing the button should open a new window and go to ~/NewPage.aspx?id=ref#10
Here is the .aspx.cs

[Code]....

Rather than opening a new window, it opens a new tab (in Firefox). How do I get it to open a new window? I would prefer to open a window that is about 500 x 600 and has no menu or scroll bars.I would prefer to not use javascript because of the pop-up blocker in IE. (see an example here at my blog for an example why - clicking on "reply to this post" doesn't work in IE because I used javascript, but it works in all other browsers).

Note: You may notice that I repeat the same code in the ddl selectedindexchanged event and the button click event. This is because only placing it in the button click event required two clicks (the first only sets the attribute). I couldn't figure out any other way to do it. If you know a better way, feel free to suggest one and I will mark it as an answer if it works. But, my real concern is the question about opening a new window.

View 3 Replies


Similar Messages:

Web Forms :: Open Page In New Window From Menu Selection?

Apr 5, 2010

I am trying to integrate classic asp pages with the new .net pages. my asp.net site uses a master page, so I want to pop up the old pages in their own window, how can i do that from the menu selection?

View 5 Replies

Onclick Of Button Open Page In New Window?

Mar 25, 2011

If Not IsDBNull(ds.Tables(0).Rows(0)("url")) Then
If ds.Tables(0).Rows(0)("haslink") = True Then
web1.PostBackUrl = ds.Tables(0).Rows(0)("url")

[Code]....

if True is returned then onclick of button WEB1 the user should be redirected to url returned from db and should open in new windwo.

whereas if i get FALSE,then url must be open in same window..

is my code correct withhrespect to redirecting user to the url? and how do i implement to opening in newwindow thing?

View 13 Replies

AJAX :: Show (Open) Modal Popup Window On DropDownList Item Selection

May 7, 2015

How to open Popup Window from dropdown list ...... [URL] .... Like this link but open in dropdown selected item.

View 1 Replies

How To Pass A Parameter To The Child Window From Parent Window Using Window.open

Oct 18, 2010

i have an aspx page in which a link in the grid view opens a popup page . the data in the grid view would be dynamic and i need to send the id of the row of grid while calling the child window. i get the id using sender.id, but how would i send this using window .open()?

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 :: 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 :: How To Open The Redirected Page From Iframe To Open In The Parent Window

Feb 17, 2011

I have an asp.net page that contains an Iframe embedded with some data and a ImageButton. On ImageButton click event (server side) I have Response.Redirct:

Response.Redirect("results.aspx");

This always open the results.aspx in iframe. I want that results.aspx should always open in the parent window. I tried the following till now but none worked:

Response.Redirect("<script language='javascript'>self.parent.location='results.aspx';</script>");
Response.Redirect("javascript:parent.change_parent_url('results.aspx');");
..and also tried the options from [URL]

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

Web Forms :: How To Pass A Window Name To Window.open

Feb 12, 2010

How do I pass a window name to window.open(url, windowname) programmatically? I am using a user control inside aspx forms. I want the windowname to be different, so from each link a separate window opens.

I have an asp:hyperlink in a .ascx form. The code looks like this:

<asp:hyperlink runat="server" id="xx", navigateurl="is set programmatically" onclick="javascrip:return popup(this, 'my window'; " text="xxx"/>
'my window' needs to be a variable.

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 - Check If Selection Changed In OnClick Event?

Jul 26, 2010

Note: The answer marked as the answer, answers the questions in the Title. However, my underlying problem, using type ahead dropdowns, is solved by moving to IE8.

I have a drop down list that when I CLICK a NEW selection I want to cause a postback ("this.form.submit()") But only if the click on the dropdown list just changed the selection.

Note that OnChange will NOT work because when the selection is changed by the keyboard I would not want to postback because it is a type ahead dropdown list.

I also suppose I could use OnChange and check if the change was caused by the mouse.

Maybe if we can come up with both solutions and i'll see which works better?

EDIT: More information:

AutoPostback = true; will not work. (don't want it to post back when the selection is changed by the keyboard)

onBlur = doPostBack; I tried this, but the result is not optimal. The user has to click off the ddl after making a selection with the mouse.

Another way to state what I want to do, i think, is do a postback when both the OnChange and OnClick events fire at the same time.

View 2 Replies

Web Forms :: How To Open Page In New Tab Using ImageButton OnClick Event

May 7, 2015

I have 1 image button and Linkbutton in my page below is code:

<asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/image/editpro.png"
CssClass="DMPIMG" OnClick="ImageButton2_Click" OnClientClick="return ValidateRange()" />

and Linkbutton:

<asp:LinkButton ID="LinkproM" runat="server" CssClass="Links3" OnClick="LinkproM_Click"
CausesValidation="false">مدیریت محصولات</asp:LinkButton>

I want when I click on imagebutton it open page in new window so I wrote below code:

<script type="text/javascript">
function ValidateRange() {
document.forms[0].target = "_blank";
return true;
}
</script>

and I want when I click on linkbutton it doesn't open new window...

here when I click on linkbutton it doesn't  open new window it is correct but when I click on imagebutton and it opens new window and back to page and click on linkbutton it open linkbutton in new window...

I want when I click on link button it doesn't open new window any way...

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

Using The Javascript To Open A Child Window Using Window.showModaldialog?

Sep 24, 2010

I am using the javascript to open a child window using window.showModaldialog(), i have retuen a value from the child page is working fine in IE and firefox but is not working in chrome browser, is there any work around or alternative for it to work in chrome as well.

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

Open A File Share Link From Window.open Javascript?

Aug 2, 2010

I am trying to open a file share link from the window.open ... but its adding the http://localhost/vdir/ before the path can any one say what is the problem?

View 1 Replies

Web Forms :: Passing Values From One Page To Popup Window Based On Checkbox Selection

Dec 13, 2012

In VB.net .... I have GridView from which i select list of rows using check box and upon clicking the button i need to display those selected rows in a gridView of another page. and that  page is a popup window?

View 1 Replies

Web Forms :: Dynamically Filter The Parameter's Values On A Popup Window Based On Other Parameters Selection

Apr 30, 2010

I have a pop up window which contains a listbox. The items on the listbox should be filtered when it is opened based on the other parameters on the parent page. I am using session to pass the values from a page to another.

View 4 Replies

Web Forms :: Open PDF In New Window?

Aug 9, 2010

Quick one. I've created a PDF using iTextSharp and want to open it straight away inside a new window. I've tried the following to no avail:

[Code]....

View 6 Replies

Web Forms :: How To Open Rad Window

Nov 24, 2010

<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>

[code]...

View 2 Replies

Web Forms :: How To Open Pop Up Window

Aug 30, 2010

i'm interested to know how can i open a small pop up window when clicking a button, not a new tab, but a new window.


View 2 Replies

AJAX :: Window.Open In AJAX Accordion Panel Opens Link In Same Window

Aug 31, 2010

I'm using the following span to open a page in a new window. What is INCREDIBLY odd is that it is exactly the same code from three different pages, but the first refuses to open in a new window. The only difference is that the first example resides within an Ajax Accordian Panel so I suspect that it might be an Ajax related issue.

[Code]....

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







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