|
The Articulate Community Forums have moved! Head over to E-Learning Heroes, your new Articulate community site, where you'll find the new forums and a whole lot more! Signup is free. The forums you see here will remain open for browsing, but are no longer open to new posts. |
|
|
LinkBack | Thread Tools | Search this Thread |
|
|
# 21 | ||
|
Member
Join Date: Dec 2007
Posts: 4
|
Quote:
Thanks for your reply. I looked at the directory properties and disabled anonymous access, Enabled the requirement for client certificates and still its not pulling the actual name. I am using Integrated on an SSL intranet server. (CAC required). The database is writing results to a seperate SQL server on the same network. Could the issue be in the coding to write to that DB? The other minor issue I have is how to strip specific content out of the username once it does write their name. (not sure how to len in C#) Thanks, Chris EDIT, found it, string quizTaker = User.Identity.Name; Now how do i strip the 4 characters out that I don't want (domain\) How do I get get Active directory username ? - ASP.NET Forums Thanks Last edited by fdnywmaster : 12-17-2007 at 11:40 AM. |
||
|
|
|
|
# 22 | ||
|
Member
Join Date: Aug 2007
Posts: 14
|
To remove part of the string in C#, try this:
Code:
string newStringVariable = oldStringVariable.Replace("ValueToRemove", string.Empty);
Be aware that if you want to use a backslash in either string, you need to "escape" it by using it twice. So to strip the domain part out of a string like "domain\user" you do this: Code:
string newStringVariable = oldStringVariable.Replace("domain\\", string.Empty);
Code:
string newStringVariable = oldStringVariable.ToLower().Replace("domain\\", string.Empty);
|
||
|
|
|
|
# 23 | ||
|
Member
Join Date: Dec 2007
Posts: 4
|
Thank you for everything. Is there any word from articulate about incorporating this feature into their code? (having the finish button be able to do this, or a submit button would be fantastic)
Thank you again!! Chris |
||
|
|
|
|
# 24 | ||
|
Member
Join Date: Mar 2007
Posts: 1
|
What if I wanted to do the send the resuls of a survey instead of just the score? Do you know of a script that will do that? I'm clueless on programming...but I can copy/paste rather well
Survey example: 2 questions multiple choice and 1 question multiple answer Any ideas? |
||
|
|
|
|
# 25 | ||
|
Member
Join Date: Dec 2007
Posts: 4
|
I have found that if you open the quizmaker.xml file and change,
Code:
<processing_parameter pname="summaryButtonEmail"><![CDATA[Email Results]]></processing_parameter> Code:
<processing_parameter pname="summaryButtonEmail"><![CDATA[Submit your Score]]></processing_parameter> Now if someone with more xml background can figure out how to get rid of the "finish" button or reassign it's action to the same as the e mail button, this program would be much smoother. Where in the q_process code do I edit to have it only store the date that the test was taken? Last edited by fdnywmaster : 12-21-2007 at 09:36 AM. Reason: quick question |
||
|
|
|
|
# 26 | ||
|
Member
Join Date: Feb 2008
Posts: 8
|
joep,
Thank you so much for posting your solution. It worked great and saved me an absolute ton of time. I would not of decided to use articulate if I hadn't found it. I did have to change one thing in your JavaScript to make it work with Firefox. I changed: document.getElementById("divQuiz").document.getEle mentById("formQuiz").submit(); to: document.getElementById("formQuiz").submit(); This allows your script to work with Firefox as well as IE. I did not test it in Safari or Opera. Best Regards, Bill Beckelman |
||
|
|
|
|
# 27 | ||
|
Member
Join Date: May 2008
Posts: 10
|
Is there a simpler solution available for the non-techie QuizMaker users out there? I don't know how to build this database but it sounds like a wonderful add. Thanks, Sabrina!
|
||
|
|
|
|
# 28 | ||
|
Member
Join Date: Oct 2007
Posts: 16
|
We have a lightweight LMS if you are using, or want to use, a DotNetNuke.com platform:
Interzoic Media LLC > DNN eLearning |
||
|
|
|
|
# 29 | ||
|
Member
Join Date: Jul 2008
Posts: 2
|
Quote:
|
||
|
|
|
|
# 30 | ||
|
Member
Join Date: Oct 2007
Posts: 16
|
re-subscribe
|
||
|
|