Accessing Text file on Network computer using aspx

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

  1. #1

    Default Accessing Text file on Network computer using aspx

    I have one workstation which holds some text files and I want to merge these
    files into one text file and want to print data from merged text file into
    aspx page. The aspx is using local aspnet account which does not have access
    to shared network folder name (\\computername\folder). What is the best way
    to do this?

    SB


    Sam Bab Guest

  2. Similar Questions and Discussions

    1. Accessing an .aspx page from server in a DMZ
      We are currently hosting our own web site; the web site of course resides outside the DMZ. For security reasons, the network crew will not allow us...
    2. Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
      Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem.
    3. Accessing Controls contained in another Control from ASPX Page
      Hi All! Is there any ways to get access to the controls contained in another user controls from an ASP.NET page? For example I have... -...
    4. ASP Session Variable Info missing after accessing ASPX
      I have a mix web site, ASP and ASPX files. I have assigned a value to Session("Date") and the href to an ASPX page. When I further href to another...
    5. Access entire desktop computer from laptop computer on wireless network
      When I try to set up a network place on my laptop, I browse the locations that I want to setup in the network place set-up wizard but it wont let...
  3. #2

    Default Re: Accessing Text file on Network computer using aspx

    You can still use the ASPNET account if you like but you must define a
    static password for the account on both machines. Both machines must also
    use the same pwd for this account. If the other machine (the one you have
    defined the fileshare on) does not have .NET installed, you must still
    define an ASPNET user and password on the machine, with access to the
    directory acting as the file share.

    On your web server, you can define a static password for the ASPNET account
    in your machine.config file.

    You can also use a totally different account, either way you must have the
    same username/pwd combination on both machines. Obviously, it would be best
    to only limit the user to read access to the minimum amount of information
    on the other fileserver.

    --
    - Paul Glavich
    Microsoft MVP - ASP.NET


    "Sam Bab" <sbabwany@hotmail.com> wrote in message
    news:u83EtEz0EHA.3708@TK2MSFTNGP14.phx.gbl...
    > I have one workstation which holds some text files and I want to merge
    these
    > files into one text file and want to print data from merged text file into
    > aspx page. The aspx is using local aspnet account which does not have
    access
    > to shared network folder name (\\computername\folder). What is the best
    way
    > to do this?
    >
    > SB
    >
    >

    Paul Glavich [MVP - ASP.NET] 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