Retrieving web content

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • metabahn

    Retrieving web content

    I need to retrieve/modify the content of a file located on a webserver. Also is there a way to retrieve data from a remote database with C#?
  • Vladimir Scherbina

    #2
    Re: Retrieving web content

    "metabahn" <bryan@metabahn .com> wrote in message
    news:42B6C06D-EBB5-48D2-AA1D-E0C3573BA7D3@mi crosoft.com...[color=blue]
    > I need to retrieve/modify the content of a file located on a webserver.[/color]
    for retrieving files from server take a look at System.Web namespace it
    contains all neccessary classes to solve your task.
    [color=blue]
    > Also is there a way to retrieve data from a remote database with C#?[/color]
    yes it is.

    --
    Vladimir Scherbina,
    Ukraine, Kiev.


    Comment

    • metabahn

      #3
      Re: Retrieving web content

      Isn't the System.Web namespace part of ASP? Sorry, I'm new to this .NET stuff so I'm a little lost with some things.

      Comment

      • -glenn-

        #4
        Re: Retrieving web content

        metabahn wrote:[color=blue]
        > Isn't the System.Web namespace part of ASP? Sorry, I'm new to this .NET stuff so I'm a little lost with some things.[/color]

        No, it's part of the .NET Base Class Library. The types in the
        System.Web namespace are not limited to just ASP.NET apps.

        --
        -glenn-

        Comment

        Working...