How to send data from an ASP form to a visual basic form?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kurien Baker Fenn

    How to send data from an ASP form to a visual basic form?

    How to send data from an ASP form to a visual basic form?

    Please help
  • Nick Malik

    #2
    Re: How to send data from an ASP form to a visual basic form?

    please be more specific. What server is the asp app running on? Is the vb
    app on a different machine or on the same machine? What business problem
    are you trying to solve? What have you tried already?


    --- Nick

    "Kurien Baker Fenn" <KurienBakerFen n@discussions.m icrosoft.com> wrote in
    message news:AC7435FB-1A44-401A-953C-C6417D2F71A2@mi crosoft.com...[color=blue]
    > How to send data from an ASP form to a visual basic form?
    >
    > Please help[/color]


    Comment

    • Kurien Baker Fenn

      #3
      Re: How to send data from an ASP form to a visual basic form?

      Hello Nick,
      Thank you for responding to my mail.i am using IIS and the vb
      application is on the same system.what i want to do is i want to generate an
      excel report from the datas provided by the user in the asp form.hope this
      will be able for you to solve my query.


      "Nick Malik" wrote:
      [color=blue]
      > please be more specific. What server is the asp app running on? Is the vb
      > app on a different machine or on the same machine? What business problem
      > are you trying to solve? What have you tried already?
      >
      >
      > --- Nick
      >
      > "Kurien Baker Fenn" <KurienBakerFen n@discussions.m icrosoft.com> wrote in
      > message news:AC7435FB-1A44-401A-953C-C6417D2F71A2@mi crosoft.com...[color=green]
      > > How to send data from an ASP form to a visual basic form?
      > >
      > > Please help[/color]
      >
      >
      >[/color]

      Comment

      • UAError

        #4
        Re: How to send data from an ASP form to a visual basic form?

        "Kurien Baker Fenn"
        <KurienBakerFen n@discussions.m icrosoft.com> wrote:
        [color=blue]
        >Hello Nick,
        > Thank you for responding to my mail.i am using IIS and the vb
        >application is on the same system.what i want to do is i want to generate an
        >excel report from the datas provided by the user in the asp form.hope this
        >will be able for you to solve my query.
        >
        >
        >"Nick Malik" wrote:
        >[color=green]
        >> please be more specific. What server is the asp app running on? Is the vb
        >> app on a different machine or on the same machine? What business problem
        >> are you trying to solve? What have you tried already?
        >>
        >>
        >> --- Nick
        >>
        >> "Kurien Baker Fenn" <KurienBakerFen n@discussions.m icrosoft.com> wrote in
        >> message news:AC7435FB-1A44-401A-953C-C6417D2F71A2@mi crosoft.com...[color=darkred]
        >> > How to send data from an ASP form to a visual basic form?
        >> >
        >> > Please help[/color]
        >>
        >>
        >>[/color][/color]

        Write the data to a file in a common directory
        use a FileSystemWatch er

        NET Framework Class Library FileSystemWatch er Class


        A.) in the running Windows Forms application to detect the
        appearance of a new file and load it.

        B) in a Windows Service to launch the Windows Forms
        application specifying the file as command-line argument. If
        the Windows Forms application is already running notify the
        Windows Form application by an alternative means.

        Alternately you could use .NET remoting to directly send
        data from the ASP.NET application to the Windows Forms
        Application/Windows Service (acting as the remoting host) -
        however the file solution is simpler and isn't as likely to
        "lose" data because the receiving end isn't listening.

        Comment

        • Nick Malik

          #5
          Re: How to send data from an ASP form to a visual basic form?

          Hi Kurien,

          Is the user uploading an excel spreadsheet, or are they just entering data?
          If they are entering data, are they entering it into a database via your
          ASP.NET app? If so, use the database as the common point of control. Have
          your VB app poll for new data (send queries that return TRUE if new data
          exists). Simply reload your excel spreadsheet when the new data arrives.

          --- Nick

          "Kurien Baker Fenn" <KurienBakerFen n@discussions.m icrosoft.com> wrote in
          message news:9F8A16B5-6E49-4DEA-B7ED-7F45AF3A6834@mi crosoft.com...[color=blue]
          > Hello Nick,
          > Thank you for responding to my mail.i am using IIS and the vb
          > application is on the same system.what i want to do is i want to generate[/color]
          an[color=blue]
          > excel report from the datas provided by the user in the asp form.hope this
          > will be able for you to solve my query.
          >
          >[/color]



          Comment

          Working...