| |
|
|
pjdev
: On
May 30, 2008 12:12 PM
said:
|
Good video. You can also add the roles property to the items in the sitemap to hide/show the links that are available to each role.
|
|
|
|
whatispunk
: On
June 04, 2008 10:50 AM
said:
|
What is the default authorization for folders without a web.config or if the web.config doesn't specifically allow or deny a user or role. If you were to add another role or user would you have to go and update every web.config in your whole site?
|
|
|
|
scottyb
: On
June 06, 2008 9:54 AM
said:
|
Excellent Video. Just a quick question. Is it possible to have a video on implementing a custom role manager to complement the two other videos in this series dealing with custom membership and profile managers. Kind Regards ScottyB
|
|
|
|
pradeepkr
: On
June 15, 2008 1:54 PM
said:
|
How Chris Pels connects to a database in App_data folder with SQL Server Authentication? As far as I know database in App_Data folder runs as User Instance which can only be connected with Windows Authentication.
|
|
|
|
|
|
asater
: On
August 20, 2008 11:12 AM
said:
|
|
|
|
|
|
leopold
: On
October 22, 2008 2:04 PM
said:
|
very useful.....like scottyB requested, a video for custom role manager would be perfect, thank you
|
|
|
|
djafer
: On
November 12, 2008 7:04 AM
said:
|
Çok teşekkürler, güzel video hazırlamışsınız.
|
|
|
|
|
|
NidaNovice
: On
February 03, 2009 4:32 PM
said:
|
hi..same request as scotty B and leopold...
|
|
|
|
bohunt
: On
February 13, 2009 5:34 PM
said:
|
|
|
|
|
|
gbradburn
: On
February 19, 2009 1:34 PM
said:
|
Nice video. Thanks. One question: if I have a single login form, on a master page, how does the sitemap know to redirect to that login form when authorization fails? In your example, it seemed to automatically know which login form to use by default (I didn't see where you specified that form as a default).
|
|
|
|
Denis Chiochiu
: On
April 06, 2009 8:08 AM
said:
|
I was wondering, wouldn't this work better: <deny users="?"/> <deny users="*"/> <allow roles = "Administrator"/> This way you will not care if you have new roles added to your app.
|
|
|
|
mustak173
: On
April 22, 2009 12:36 AM
said:
|
The above code won't work. The first rule will deny unauthorised users but allow authorised users, the second rule will deny all the [authorised] users therefore the third rule won't be applied. The rules are applied from top to bottom.
|
|
|
|
mustak173
: On
April 22, 2009 12:51 AM
said:
|
i think, if you chnge: <deny users="?"/> <deny users="*"/> <allow roles = "Administrator"/> to <deny users="?"/> <allow roles = "Administrator"/> <deny users="*"/> then only the administrators will have access
|
|
|
|
ezofili
: On
September 24, 2009 10:53 PM
said:
|
Hi. Thanks for the Video. How to move this from development to the Production Server?
|
|