Calling ASPX pages from ASP page

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Calling ASPX pages from ASP page

    Hello,

    I have an asp page which needs to call an aspx page? How do I go about
    doing that? And also the codebehind for ASPX page (aspx.cs), do I have to
    make any changes to how that is called from aspx? Thanks.

    Lakshmi


    Lakshmi Guest

  2. Similar Questions and Discussions

    1. Calling an Ascx from w/i Aspx codebehind
      I have an aspx that I would like to "dynamically" display a user control on. When the user clicks (LinkButton) on "Find Existing Trip" within the...
    2. Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
      Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem.
    3. Calling Webservice over SSL w/Client Certificate from aspx
      Hello Gurus, Trying to consume a webservice through aspx page over SSL with Client Certificate and getting below error. System.Net.WebException:...
    4. Calling external javascript from .aspx file
      I have an aspx file which calls javascript written in another file. The point is that I am trying to pass some parameters from this aspx page to...
    5. Calling a function in codebehind from the html side of the aspx?
      I read from some book that you can actually on any tag in the html page put a onClick or something and assign it with the sub/function name that is...
  3. #2

    Default Re: Calling ASPX pages from ASP page

    Lakshmi,
    U can call an aspx page from an asp page jus the usual way, like
    how you would call an asp page, say using Response.Redirect. But the
    only hitch is that if you have set any Session variables in the asp
    page, they cannot be accessed in the aspx page. ASPX treats Session
    objects differently.


    Latha Rajeev



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Latha Rajeev Guest

Posting Permissions

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

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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139