Friends, I am learning about Office Web Component (OWC) and asking if any of you know good sources about OWC. Thanks before. ...
Fredy Setiawan
FredyS@...
Sep 1, 2004 9:22 am
9688
Hi. I just wanted to know if there is a way to use ASP to determine the windows logon name of the currently logged in user on an anonymous client visiting an...
Sorry if this is OT, but this is the best web dev group I know...so I'm hoping someone here will know what the heck I'm trying to do. I want to create a page...
How I accomplish this at work: 1) Open IIS 2) Right-click your virtual directory 3) Select Properties 4) Go to the Directory Security tab 5) Click the Edit...
I know there is a way to do it IF your local domain is an active directory domain and if you have active directory running on your web server machine. Exactly...
I just asked our security guy here and he said if you are logged into a domain account and the page is on your intranet it can be done. But he isn't quite sure...
use: join function ... From: active-server-pages@yahoogroups.com Date: Saturday, August 28, 2004 10:56:36 AM To: active-server-pages@yahoogroups.com Subject:...
hi , using this code ... Exp: input=string="waqar" output=string=waqar ... From: active-server-pages@yahoogroups.com Date: Saturday, August 28, 2004 10:56:36...
You can resize the window using window.resize, but as far as I know you won't be able to remove all the toolbars and stuff without opening the window through...
You can't get someone's logon details if you have anonymous browsing. When your browser first requests a page it does so anonymously, and only if that fails...
sUser = Request.ServerVariables("LOGON_USER") i = InStr(sUser, "\") If i > 0 Then sDomain = Left(sUser, i - 1) sUser = Mid(sUser, i + 1) End If ... From:...
Or vbCrLf if you want to stay with the vb constants. Dave S ... From: Chris Hagwood To: active-server-pages@yahoogroups.com Sent: Thursday, September 02, 2004...
Here is the code that I use to grab the network ID from someone on my network: Function GetNetworkID 'This function returns the visitors network ID. Dim...
I tried this: Response.Write Request.ServerVariables("AUTH_USER") and it is empty. Do you have to have active directory running on your web server? I did try...
If you get the pop-up then you are using Basic Authentication. When anonymous is denied it will try integrated and if that fails it will resort to Basic Auth....
I've been ripping my hair out trying to find rhyme and reason to why http://dotlessname will sometimes seemingly be interpreted as an Internet zone site,...
You must still have anonymous access enabled then. (Sorry, I haven't been following this thread, so I don't know if this has been mentioned or not...) What do...
Hmmm.... with anonymous access disabled.... it works. I get the domain name and the network user name... if I access the web site from a different computer...
I, too, have the same set up. 1) AD does not run on my web server. 2) I have "anonymous access" and "integrated windows authentication" checked -- nothing...
Save the following to your web server as ALLHTTP.asp and run it and see what ... <% @language = JavaScript %> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type"...
Your IIS server does not have to be a domain controller for integrated authentication to work. In fact, running IIS on a DC is not a good idea imo anyway. If...
Yes. Like I said, anonymous is the first access method the browser tries and if it succeeds then it carries on. For you to get the user info you need to...
Thanks, Dan. I was able to work around the problem with a little creative page formatting, but I appreciate you taking the time to answer. Dian~ ... From: Dan...
Probably not the right forum, but thought I'd ask because I can't find it so far via Google: I have a user that somehow has the wrong user typed into his...
... Yes, we tried that. Did, however, stumble across a solution. He's on XP, and it has a place in the User Accounts/Passwords control panel that lets you...