A
Andrew Allen
I need to migrate a site from Windows 2000 server running IIS5 to Windows
2003 running IIS6.
The site uses extensively MSWC.PermissionChecker to control what links to
show to users. The MSWC.PermissionChecker that was part of IIS5 resource
kit but not available in IIS6 resource kit.
***
set oSecurity = Server.CreateObject("MSWC.PermissionChecker")
If oSecurity.HasAccess("somepath\default.asp") Then
display link to somepath\default.asp
end if
The component is documented by MS at
http://www.microsoft.com/windows200...indows2000/en/server/iis/htm/asp/comp3hf8.htm
***
My infrastructure team refuses to install the PermChk.dll ( that provides
MSWC.PermissionChecker object ) on Win2003 server for fear that this is
unsupported dll.
Any idea of what can be used for checking whether user has access to a page
or code sample so I can build my own component ( i.e. DLL)?
2003 running IIS6.
The site uses extensively MSWC.PermissionChecker to control what links to
show to users. The MSWC.PermissionChecker that was part of IIS5 resource
kit but not available in IIS6 resource kit.
***
set oSecurity = Server.CreateObject("MSWC.PermissionChecker")
If oSecurity.HasAccess("somepath\default.asp") Then
display link to somepath\default.asp
end if
The component is documented by MS at
http://www.microsoft.com/windows200...indows2000/en/server/iis/htm/asp/comp3hf8.htm
***
My infrastructure team refuses to install the PermChk.dll ( that provides
MSWC.PermissionChecker object ) on Win2003 server for fear that this is
unsupported dll.
Any idea of what can be used for checking whether user has access to a page
or code sample so I can build my own component ( i.e. DLL)?