Hi there!
If you need to prohibit all users from accessing some files, but still have access to them from your application code, a quick solution is to put your files in App_Data folder - web server does not allow downloading any files from it, but you still can access them from you application code.
If you need give access to files to some users but not another, then you will need to implement authentication. Having <authentication mode="None"/> means that you probably do not use any of the standard ASP.NET authentication methods. Although UltiDev Cassini does not support Integrated/Windows authentication, it does support Forms and Basic auth, albeit both send username and password in clear text because UltiDev Cassini does not support SSL. Your best option would be be to implement ASP.NET Forms authentication, because then you will be able to limit access to files and folders using "allow" and "deny" web.confg settings.
Best regards,
UltiDev Team.
Please donate at
http://www.ultidev.com/products/Donate.aspx to help us improve our products.