You do not have permission to access xxx

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
cheemingyong
User
Posts: 37

You do not have permission to access xxx

Post by cheemingyong »

hi i tried this out in asp.net maker and encountered logouts whenever i access the page

first of all i created a custom view using asp.net maker, the data beneath the custom view is stored in sql server.

i have a batch process updating the data on the custom view. this batch process keeps updating the tables
that make up the custom view with new data

i noticed when i log on to asp.net maker generated code and when i try to access the page
generated for the custom view, i kept getting logged out for no reason.

as long as the data in the custom view is updated, the logout happens when i access the page
generated by the custom view.

i see an error message which says "You do not have permission to access /vw_CurrencyRemittanceedit"
and i am back to the logon screen.

it doesn't happen in the debug mode when i ran debugging in visual studio.
but when i published the code and run it, the problem happens


Webmaster
User
Posts: 9427

Post by Webmaster »

The message means you do not have permission to access the table.

If you have enabled User Level Security, make sure that the logged in user have the required permission. Also make sure that the batch update do not accidentally change the permission.


Post Reply