HTML, JavaScript And CSS Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingHTML, JavaScript And CSS Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old December 9th, 2003, 06:17 PM
jeffrey.sweeney jeffrey.sweeney is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 2 jeffrey.sweeney User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Retrieving network authentication information - ASP/jscript

I am tryign to pull a user's network UserID to use to authenticate against an MS SQL server. I can hardcode the information in so I know that I can actually accomplish the task. My problem is stripping away the domain information. Here is what I have.

jscript function (my problem)

<script language="JavaScript">
function fnGetUserID(sUserID)
{
sUserID = Trim(sUserID);
var iPos = IndexOf(sUserID,"/");
sUserID = sUserID.SubStr(iPos+1);
return sUserID;
}

I beleive the reason this fails is because SubStr expects a string object and I am passing a string data type. Or so goes teh theory.

I'm sure this is something really easy and will make many of you just laugh at my inferior knowledge ... your assistance is appreciated.

Reply With Quote
  #2  
Old January 7th, 2004, 12:50 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,661 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 39 m 22 sec
Reputation Power: 34
Send a message via AIM to shamrog12
well for one, substr() takes two parameters 1) where to start and 2) how many characters the string will be. I think the logic between

var iPos = IndexOf(sUserID,"/");
sUserID = sUserID.SubStr(iPos+1);

...is incorrect. How many characters is the sUserID supposed to be and do you expect the "/" to be in front of behind the target id? Can you give an example of a value you think could be passed into this function? I can help if I see what you start with and have an idea of what you want at the end.

Reply With Quote
  #3  
Old January 7th, 2004, 07:04 AM
jeffrey.sweeney jeffrey.sweeney is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 2 jeffrey.sweeney User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
domain/userID where userID is an individuals network login - first initial+up to first 6 of lastname. Unfortunately some folks have small last names so there is not strict 7 character rule.

Reply With Quote
  #4  
Old January 9th, 2004, 01:10 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,661 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 39 m 22 sec
Reputation Power: 34
Send a message via AIM to shamrog12
this should work for you

Code:
<script language="JavaScript"> 
function fnGetUserID(sUserID) 
{
sUserID = sUserID.toString();
var iPos = sUserID.indexOf("/");
sUserID = sUserID.substring(iPos+1,sUserID.length);
return sUserID;
//document.write(sUserID);
}
</script>

Reply With Quote
  #5  
Old January 9th, 2004, 01:12 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,661 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 39 m 22 sec
Reputation Power: 34
Send a message via AIM to shamrog12
i commented out the document.write() on purpose. If you uncomment it then you can see the product of the code displayed on the screen

Reply With Quote
  #6  
Old February 3rd, 2004, 10:16 AM
Zaphod19 Zaphod19 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 1 Zaphod19 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Use SPLIT to separate domain\username

ArUserInfo=sUserID.split(/\\/);

alert("Domain: "+ArUserInfo[1]+" User: "+ArUserInfo[0]);

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingHTML, JavaScript And CSS Help > Retrieving network authentication information - ASP/jscript


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway