Entering Info on One Page, used in 2nd Page

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

  1. #1

    Default Entering Info on One Page, used in 2nd Page

    Where can I find information about how to enter
    information on one page and the close it and update the
    input information onto the second page?
    Tobe Guest

  2. Similar Questions and Discussions

    1. Page Info
      I created an Imposition program to Impose Pages with IAC and Javascript. The next step what I want to achieve is: Checking if an individual page has...
    2. Page info bug strikes again!
      First off, if you're not familiar with this issue check out these posts: AlFerrari, ""Page information" shifts pages under 5 inches" #1, 14 Mar...
    3. Printing Page Info
      I have a problem printing file info out of Adobe Acrobat 6.0.2. I am running on a Dual 1.25GHz G4 with OS X 10.3.5 and 512MB of RAM. This was also...
    4. info from Active Directory on ASP page
      Hello group I am not really sure which group to post to - apologies if I have it wrong. User logs on to the network on a WinXP client with...
    5. Jump to a page without entering the page number
      I want to add menu options to my pdf file by allow the reader to click on a menu item and then jump to a particular page. e.g. menu item 1, page 3,...
  3. #2

    Default Re: Entering Info on One Page, used in 2nd Page

    Here's a nice, simple way to pass values from one page to another:
    (VB.NET code)

    'Add data to the context object before transferring
    Context.Items("myParameter") = x
    Server.Transfer("WebForm2.aspx")

    Then, in WebForm2.aspx:

    'Grab data from the context property
    Dim x as Integer = CType(Context.Items("myParameter"),Integer)

    Of course there are a number of ways to pass values from one page to
    another, such as using the querystring, cookies, session,
    context, saving to a temporary table in the database between each page, etc.
    You'll have to decide which technique is best for your application.
    Here are several good articles on the subject to help you decide.
    [url]http://msdn.microsoft.com/msdnmag/issues/03/04/ASPNETUserState/default.aspx[/url]

    [url]http://www.aspalliance.com/kenc/passval.aspx[/url]

    [url]http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=600[/url]

    [url]http://www.dotnetbips.com/displayarticle.aspx?id=79[/url]

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


    "Tobe" <tobep@vantagecontrols.com> wrote in message
    news:08e301c344a3$d28d9d00$a001280a@phx.gbl...
    > Where can I find information about how to enter
    > information on one page and the close it and update the
    > input information onto the second page?

    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