Passing large data between forms, different apps

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

  1. #1

    Default Passing large data between forms, different apps

    Hi,

    I have a need to pass a large data chunk (> 1024 bytes)
    between web forms that reside on different web
    applications (say one application is
    http:\\localhost\website1\page1.aspx while the other is
    http:\\localhost\website2\page2.aspx). Navigation from
    one app/page to the other is via Response.Redirect
    ("/websiteX/desiredpage.aspx");

    I've tried QueryStrings & Cookies unsuccessfully because
    of the length limitations. Session variables will not
    work because the pages reside in separate web applications.

    Thanks for your help!!!
    Terry



    terry Guest

  2. Similar Questions and Discussions

    1. Safest way to pass data between web apps?
      I have an asp.net application that uses windows authentication. We need to loosely integrate another web application (written in cold fusion -...
    2. Advanced>Forms>Export Forms Data is grayed out
      version 6.0.0 ¿ How do I activate this option ?
    3. Passing a Large String as a parameter to a web service
      Hello I have a situation where I might pass a large string as a parameter to a webservice. The string size could go upto 100 MB. Is there a...
    4. Large Forms in VS.net
      Hi, If you will change your work paradigm from working with DataSets to working with ORM (Object Relational Mapping) you can achieve what you...
    5. Passing large ammount of data to php script
      Ok, I know you can pass data in the querystring (getURL('http://localhost/output.php?text=hello');), but as far as I can remember there is a limit...
  3. #2

    Default Re: Passing large data between forms, different apps

    Or you could use a database as a storage medium, and either cookie, or
    querystring the index value.

    bill

    "terry" <terry_wahl@msn.com> wrote in message
    news:031c01c344ad$ad4d9680$a101280a@phx.gbl...
    > Hi,
    >
    > I have a need to pass a large data chunk (> 1024 bytes)
    > between web forms that reside on different web
    > applications (say one application is
    > http:\\localhost\website1\page1.aspx while the other is
    > http:\\localhost\website2\page2.aspx). Navigation from
    > one app/page to the other is via Response.Redirect
    > ("/websiteX/desiredpage.aspx");
    >
    > I've tried QueryStrings & Cookies unsuccessfully because
    > of the length limitations. Session variables will not
    > work because the pages reside in separate web applications.
    >
    > Thanks for your help!!!
    > Terry
    >
    >
    >

    William F. Robertson, Jr. 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