Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do I allow Users to save changes to a file

Status
Not open for further replies.

Prattaratt

Technical User
Aug 6, 2000
291
US
I am designing a web site for where I work using Visual Studio Development Server, and am somewhat new to asp.net. We have a spreadsheet that we want certain individuals at a remote location to be able to view, and then also allow other individuals to be able to change. I have set the permisions as such for the restricted access pages as such:

Code:
<configuration>
  ...

  <location path="~/Members.aspx">
    <system.web>
      <authorization>
        <deny users="?" />
      </authorization>
    </system.web>
  </location>
  <location path="~/JointFiles/DriverStatus.xls">
    <system.web>
      <authorization>
        <allow users="dpratt" />
        <allow users="dpratt" verb="modifyState" />
        <deny users="?" />
      </authorization>
    </system.web>
  </location>

  ...
</configuration>
but when the save dialog comes up and you press save nothing happens. What am I missing? everything else, from login to restricted access works as planned.

90% of all questions can be answer by the Help file! Try it and be amazed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top