Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 9687 - 9716 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9687
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@...
Send Email
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...
wilgf
Offline Send Email
Sep 1, 2004
10:08 pm
9689
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...
Dian Chapman
dianchapman
Offline Send Email
Sep 1, 2004
10:37 pm
9690
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...
Mark E
meckeard2000
Offline Send Email
Sep 1, 2004
11:05 pm
9691
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...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 1, 2004
11:05 pm
9692
I would love to get a look at that code! Soren Mark E <meckeard2000@...> 09/01/2004 04:05 PM Please respond to active-server-pages To:...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 1, 2004
11:29 pm
9693
Hi. I have been reading and it was mentioned there was some way to get it even with the anonymous browse rights set ON. But I haven't found any...
wilgf
Offline Send Email
Sep 2, 2004
1:50 am
9694
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...
wilgf
Offline Send Email
Sep 2, 2004
2:04 am
9695
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:...
Waqar
waqi23
Offline Send Email
Sep 2, 2004
7:02 am
9696
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...
Waqar
waqi23
Offline Send Email
Sep 2, 2004
7:03 am
9697
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...
Dan Powderhill
danaspelite
Offline Send Email
Sep 2, 2004
8:35 am
9698
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...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 2, 2004
8:52 am
9699
... Try String = Replace(String, chr(10) chr(13), " ") Each "return" has a carriage return and a line feed....
Chris Hagwood
chris_hagwood
Offline Send Email
Sep 2, 2004
10:36 am
9700
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:...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 2, 2004
10:47 am
9701
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...
David Smart
smartware_co...
Offline Send Email
Sep 2, 2004
11:04 am
9702
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...
Mark E
meckeard2000
Offline Send Email
Sep 2, 2004
11:37 am
9703
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...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 2, 2004
3:59 pm
9704
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....
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 2, 2004
4:07 pm
9705
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,...
Ray at work
ray_at_place
Offline Send Email
Sep 2, 2004
4:13 pm
9706
I still don't get a value for AUTH_USER if I use: http://LocalHost/TheWebSite or http://TheMachineName/TheWebSite Soren Adrian Forbes - ITD...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 2, 2004
4:16 pm
9707
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...
Ray at work
ray_at_place
Offline Send Email
Sep 2, 2004
4:22 pm
9708
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...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 2, 2004
4:50 pm
9709
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...
Mark E
meckeard2000
Offline Send Email
Sep 2, 2004
4:52 pm
9710
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"...
bobfilipiak
Offline Send Email
Sep 2, 2004
5:30 pm
9711
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...
Ray at home
ray_at_place
Offline Send Email
Sep 3, 2004
4:41 am
9712
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...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 3, 2004
8:26 am
9713
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...
Dian Chapman
dianchapman
Offline Send Email
Sep 4, 2004
8:26 am
9714
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...
Chris Hagwood
chris_hagwood
Offline Send Email
Sep 7, 2004
3:16 pm
9715
Obvious question, but has he shut down and re-started his browser? ... From: Chris Hagwood [mailto:cwh@...] Sent: 07 September 2004 4:16 To:...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 7, 2004
3:20 pm
9716
... 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...
Chris Hagwood
chris_hagwood
Offline Send Email
Sep 7, 2004
3:46 pm
Messages 9687 - 9716 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help