| Author |
|
smorgan New User

Joined: July/31/2007 Location: United States
Online Status: Offline Info: 4
|
| Added: July/31/2007 at 8:10pm | IP Logged
|
|
|
Hello,
I've just purchased & installed the ASP Protect7 for a client & have found it pretty straightforward & easy to follow. But I am currently having a problem that's got me stumped.
Everything seems to be working well (so far). I've been integrating the web design for our client into the asp files and it all looks good. Except....for the user_area.asp page. It doesn't seem to be pulling in the stylesheet tag I've inserted for all the asp pages. Even when I view the source, the code doesn't include a <head></head> tag. Which is, of course the problem since that's where the stylesheet link is.
Also, on the default.asp page I see the code to pull in a link to be emailed a password reminder. But that doesn't display live on the site. I'm sure I'm missing something here, but what do I need to do to get that element to work.
Last question, is it within your policy to allow removal of the link to the application information in the footer.asp file? & are we allowed to modify the admin section for site integration as well?
Links for reference: http://www.novalash.com/aspprotect/users/default.asp
(this page looks right)
http://www.novalash.com/aspprotect/users/user_area.asp
(this one doesn't pull in the css file)
user name:help, password:test
Let me know if you need further info.
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: August/01/2007 at 10:40am | IP Logged
|
|
|
Hi,
Since this is licensed code the reference and link to ASPProtect must remain in the admin area. You can change the admin area to look radically different for all I care but the reference and link must be reasonably visable somewhere on the bottom. You dont need to keep the big ASPProtect logo in there. I am flexible on that.
That being said you can whatever you like on the public side of things. Not links or references to aspprotect necessary.
As for your issue with the css.. that page is handled differently that others.. you need to follow the logic between that page and check_user_inc.asp page to see what is going on... near the bottom of the check_user_inc.asp page is where things matter
it all has to do with this LOGIN_PAGE = "Yes" which will see in both asp files... the check_user_inc.asp and the user_area.asp.. there are also comments in the check_user_inc.asp page explaining what it going on there
if you can't sort it out I would be willing to go in and take a look.. I am sure I could get it working in a few minutes of messing around
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
smorgan New User

Joined: July/31/2007 Location: United States
Online Status: Offline Info: 4
|
| Added: August/01/2007 at 5:12pm | IP Logged
|
|
|
Hi,
Thanks for the response. I did find the place to make the change & for anyone else who ends up needing to change it, I edited the page check_user_inc.asp from
Response.Write("<HTML>") Response.Write("<BODY " & BodyTag & ">")
to Response.Write("<HTML>") Response.Write("<HEAD><title>" & App_Name & "</title><link href=/novalash.css rel=stylesheet type=text/css></HEAD>") Response.Write("<BODY " & BodyTag & ">")
So, that's great, got that fixed. Now, do you have any idea what I'm missing with the password reminder link not coming up on the default.asp page?
Thanks!
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: August/01/2007 at 5:16pm | IP Logged
|
|
|
not sure exactly where you mean... but all that is .. is a regular old html link to certain page.. just add one in there some place if you dont have one..
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
smorgan New User

Joined: July/31/2007 Location: United States
Online Status: Offline Info: 4
|
| Added: August/01/2007 at 5:32pm | IP Logged
|
|
|
Oh, ok, sorry to be so dense. The code was: <% If CDONTS_Installed = true or SASMTPMAIL_Installed = true or JMAIL_Installed = true or ASPEMAIL_Installed = true Then %> <br> <a href="email_password.asp" class="text2">Forgot your password ?</a> <% End If %>
So I assumed the link had to have the asp code around. Anyway, THANKS! It looks great! I know the client is going to love it. We'll probably use it next time around as well.
cwilliams wrote:
| not sure exactly where you mean... but all that is .. is a regular old html link to certain page.. just add one in there some place if you dont have one.. |
|
|
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: August/01/2007 at 5:36pm | IP Logged
|
|
|
ya, if that code is there it must be left over from an older version...
it is no longer going to do what it used to do as those values no longer exist
and removing it around the link is the thing to do...
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
smorgan New User

Joined: July/31/2007 Location: United States
Online Status: Offline Info: 4
|
| Added: August/01/2007 at 5:46pm | IP Logged
|
|
|
Hmm, I wonder if that's why the other file didn't have a <head> tag. FYI, I just bought it, so the download must be serving up older files, in case that's something you need to check on.
Either way, all good so far!
cwilliams wrote:
ya, if that code is there it must be left over from an older version...
it is no longer going to do what it used to do as those values no longer exist
and removing it around the link is the thing to do... |
|
|
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: August/01/2007 at 5:48pm | IP Logged
|
|
|
no, the download is fine...
just that one bit of code was wrong... nobody has ever noticed it... thats all.. I am not all that organized when it comes to my past coding habits...
there is no header where you mention just because I never put one there
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |