Web Forms :: Can Open A New Window When Calling A Function

Oct 7, 2010

How can I open a new window when calling a function. I do not want to open this new window on a click event. There are now buttons or hyperlinks involved. When a function is called I need a new window to open.

View 12 Replies


Similar Messages:

Web Forms :: Javascript Function To Open A New Window?

Feb 5, 2010

I have the following 2 lines of code:

Dim sHyperlink As
String =
"<a href=""LabPopup.aspx?RefNo=" & iLabRefNo &

[code]...

View 3 Replies

Calling And Open Popup Window Simultaneously On Google Chrome?

Mar 11, 2011

As the part of C#.net project I have to call one function and after that open a pop up window from a button click. In Internet Explorer I can done this successfully but the same code not working on Google Chrome. The code is adding below.

protected void btnaddtogroup_Click(object sender, EventArgse)
{
fetchaddressid();
string strScript = "<script language=javascript>OpenPopup();</script>";
Page.RegisterStartupScript("callTest", strScript);
}

View 3 Replies

Window.open Function In HREF TAG Not Working?

Feb 2, 2011

I am trying to open popup using window.open finction but somehow it's not working ... well below is the code

string properties = "left=250px, top=245px, width=700px, height=450px,scrollbars=yes, status=yes, resizable=yes";
TableCell cell = new TableCell();
cell.Text = "<a href="javascript:void(window.open('details.aspx?node="+node+"','"+properties+"'))">" + "View Details</a>";

But his is not working. While clicking the anchor tag getting javascript error "Invalid argument".

View 1 Replies

Window.open Javascript Function Is Not Working In Mozilla, But Working In Other Browsers

Mar 18, 2010

Window.open javascript function is not working in Mozilla, but working in other browsers, here is what I have write.

<a href="javascript:window.open('../Terms.aspx','Terms','width=550,height=400')">
click here</a>

Actually what happened in Mozilla is popup is opened but parent window is blank with [object Window]

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

Web Forms :: Actually Calling Window.Onresize And Control It?

Feb 8, 2011

Can I actually call window.onresize as well as control when it automatically executes?

View 3 Replies

Web Forms :: Calling An Aspx Page With New Window?

Mar 10, 2011

I have an web application in a server.there is an aspx page i need to call an aspx page with new window using response.write().

ex: Response.Write("www.abc.com/page1.aspx");

But it will open the page in the same window but i want to open the page in new window.

View 4 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 :: Calling Response.TransmitFile From Window Dialog?

Feb 11, 2010

I create a window dialog by calling window.showModalDialog;

In that dialog I want to execute a Response.TransmitFile like the code below. The code works fine from a non dialog window. However it just hangs if I call it from the modal dialog page. No error messages. I just doesn't do anything. Is there something else I need to do to get this to function in a dialog window?

string thePath = "c:\temp\New Text Document.txt";
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + "New Text Document.txt");
Response.TransmitFile(thePath);
Response.End();

View 2 Replies

Web Forms :: Calling Function In Codebehind

May 11, 2010

I have a master that I am trying to load a certain stylesheet based on some data. I have a function in the code behind of the master page:

[Code]....

Then in the head of the master, I have:

[Code]....

I've tried "Eval" too but if I set a breakpoint in the LoadFacilityStyles function, it never even gets triggered/called. Is this possible to do with .master?

View 4 Replies

Web Forms :: Getting Error Calling Javascript Function From Another Javascript Function

Jan 3, 2011

Getting error calling Javsscript function from another Javascript function

[Code]....

View 4 Replies

Forms Data Controls :: Calling Button Events Once Pop Up Window Closed?

Jul 2, 2010

How do i call click event of a button once my pop up window closed? My code is below:

[Code]....

I would prefer not to add anything in my popup window ftb.imagegallery.aspx

View 1 Replies

Web Forms :: Calling A Function Before Page Redirection?

May 3, 2010

I 've some session variables which are used on a page, i want to clear those session variables as soon as user is redirected from this page,

Is there any method which i can call before user is redirected from this page ?

View 10 Replies

Web Forms :: Calling Jquery Function From Codebehind?

Oct 14, 2010

I have the following jquery function that displays a page loading message once the user clicks submit.

[Code]....

This works just fine. But i do have some validations on page that i have to check and throw error if they don't fill certain fields on the form. Having this function on the ClientClick event, its fired each time the button is clicked. How could i fire this function on the codebehind once i am done with all my validations?

View 2 Replies

Web Forms :: Calling Function On Different Aspx Page?

Jun 16, 2010

This is such a simple thing but i can't figure it out.

I have this code: (just a section)

[Code]....
[Code]....

Here is the code behind:
[Code]....

I can get it to work if i completely paste the code in there, but this is such a pain. I just dont quite understand OOP. What do i have to write to call that code from another aspx page?[Code]....

View 12 Replies







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