posting data from a web form to other one.

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

  1. #1

    Default posting data from a web form to other one.

    Hi,

    I have a frameset and two aspx page. How can post data
    from one web form to other one.

    Thanks
    s.d Guest

  2. Similar Questions and Discussions

    1. Form Data not posting...
      Hi, Here is the action script from movie. When I click submit the from data loads I can see it with trace. However when it gets posted to CFpage...
    2. ASP.NET not posting form data
      Dear all, We are a library and are trying to get an ASP.NET form page working on our site. the buttons and fields appear, but we are still having...
    3. Posting HTML Form data to MySQL via PHP
      I just need a correct PHP statement that will allow me to instert a record into a MySQL database/table. The "mysql_query(" statment used below does...
    4. problem posting data from asp form
      I am running IIS5, Win2k Server, and .Net Framework 1.1. For some reason asp forms will not post data. So I have a form with a text box. The...
    5. List Box in form not posting data
      I have a list box with the following: Row Source Type: Table/Query Row Source: <Saved Query with two columns selected> Column count:2 Multi...
  3. #2

    Default Re: posting data from a web form to other one.

    This will not work since you can't Server.Transfer to another frame.

    Generally people use client side javascript to handle interaction between
    frames.

    Ideally you'd get rid of the frames since they are a big headache with .NET,
    and instead use web controls to divide up sections of your page.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]



    "Kevin Spencer" <kevin@takempis.com> wrote in message
    news:OC$GXKqVDHA.2364@TK2MSFTNGP09.phx.gbl...
    > Add the data from the first form to the HttpContext, and use
    Server.Transfer
    > to the other form. The HttpContext is transferred as well.
    >
    > --
    > HTH,
    >
    > Kevin Spencer
    > Microsoft MVP
    > .Net Developer
    > [url]http://www.takempis.com[/url]
    > Complex things are made up of
    > lots of simple things.
    >
    > "s.d" <snob_d@yahoo.com> wrote in message
    > news:0b7601c356a0$06123b00$a501280a@phx.gbl...
    > > Hi,
    > >
    > > I have a frameset and two aspx page. How can post data
    > > from one web form to other one.
    > >
    > > Thanks
    >
    >

    Steve C. Orr, MCSD 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