Results 1 to 2 of 2

Thread: Pop window in asp.net

  1. #1
    HowardAllen is offline Senior Member
    Join Date
    Dec 2009
    Posts
    196
    Rep Power
    3

    Default Pop window in asp.net

    Hi. I am .met developer. I want code for open pop window in asp.net application. I tried different but none of them worked out for me. If you are having any codes then reply me. It can helpful to me. Thank in advanced.

  2. #2
    MyersGray is offline Senior Member
    Join Date
    Dec 2009
    Posts
    197
    Rep Power
    3

    Default

    The script that I have mentioned will definitely help you.

    Code:
    function callpopup()
    {
        newWin = window.open("index.aspx","AddFavorite","toolbar=no,status=no,menubar=no,location=center,scrollbars=no,resizable=no,height=500,width=350");
        newWin.opener = top;
    }
    
    in page load add Attributes to hyperlink control  HyperLink1
    
     HyperLink1.Attributes.Add("onclick","callpopup()");
    **)
    I have tried the given code but it didn’t solve my problem. Please try to provide some other solution.

Similar Threads

  1. CSS property window
    By HowardAdams in forum Operating System
    Replies: 1
    Last Post: 01-29-2010, 05:24 PM
  2. Onto upgrade window xp to window 7
    By Lolita Jovina in forum Windows XP
    Replies: 1
    Last Post: 09-19-2009, 06:39 AM
  3. 4.2: Come to my window
    By carlos in forum Windows XP
    Replies: 0
    Last Post: 04-06-2009, 06:48 AM
  4. Window NT
    By harddisk6564 in forum Windows XP
    Replies: 0
    Last Post: 11-29-2008, 06:59 AM
  5. MMC Window
    By qeintine641 in forum Windows XP
    Replies: 0
    Last Post: 11-26-2008, 09:47 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48