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

  1. #1

    Default word access right

    Hello,
    My problem is that: I want to open a word document and writing something in
    it then save it.But it give me granting access error.and say that:To grant
    ASP.NET write access to a file, right-click the file in Explorer, choose
    "Properties" and select the Security tab. Click "Add" to add the appropriate
    user or group. Highlight the ASP.NET account, and check the boxes for the
    desired access .I made what it say.But still doesnt work.Any idea??

    Thanks


    selen Guest

  2. Similar Questions and Discussions

    1. Web Service Access Denied with MS Word
      I have a web service that uses MS Word to do mail merge and printing. It works fine when running on my development machine. But when I deploy it...
    2. Word Document from Access
      It is the mail merges with which I have not had success. Ngan Bui wrote in message <0d8e01c351fc$be12afd0$a501280a@phx.gbl>...
    3. Access forms and Word documents
      is there any way to have a form that when opened a particular field will show a word document which has tables and graphs in it. I would like to...
    4. Access/Word Forms
      I have a main form and a subform (one to many relationship). The main form contains patent information: i.e., Patent No., Title, filing date,...
    5. Print Word doc from Access
      Try using the following on the On_Click event of the button (this prints the document specified in the path): Dim MyPath As String, wd As Object,...
  3. #2

    Default Re: word access right

    Can you post the exact error message you are seeing?

    Cheers
    Ken

    "selen" <skiyanc@yahoo.com> wrote in message
    news:e6n2ooN5DHA.3848@TK2MSFTNGP11.phx.gbl...
    : Hello,
    : My problem is that: I want to open a word document and writing something
    in
    : it then save it.But it give me granting access error.and say that:To grant
    : ASP.NET write access to a file, right-click the file in Explorer, choose
    : "Properties" and select the Security tab. Click "Add" to add the
    appropriate
    : user or group. Highlight the ASP.NET account, and check the boxes for the
    : desired access .I made what it say.But still doesnt work.Any idea??
    :
    : Thanks
    :
    :


    Ken Schaefer Guest

  4. #3

    Default Re: word access right

    Access is denied.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.UnauthorizedAccessException: Access is denied.

    ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

    To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.


    Tom 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