| Author |
Topic Search Topic Options
|
ecollier
Groupie
Joined: 17 February 2004
Location: United States
Status: Offline
Points: 57
|
Post Options
Thanks(0)
Quote Reply
Topic: Tried adding a link at the top... Posted: 09 June 2006 at 8:44pm |
of the main forum page and I get the following error. Can someone tell me what I need to do to get rid of the error?
Microsoft VBScript compilation error '800a03ee'
Expected ')'
/includes/navigation_buttons_inc.asp, line 87
Regards,
Eric
|
 |
dpyers
Senior Member
Joined: 12 May 2003
Status: Offline
Points: 3937
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 June 2006 at 12:32am |
|
In my 7.91 version, line 87 is blank. If you just uploaded the forum, it would seem that the file got corrupted during the upload. Re-uploading should fix it.
|
Lead me not into temptation... I know the short cut, follow me.
|
 |
ecollier
Groupie
Joined: 17 February 2004
Location: United States
Status: Offline
Points: 57
|
Post Options
Thanks(0)
Quote Reply
Posted: 14 June 2006 at 5:32pm |
My site has been working flawlessly for about a year now. This only happens when trying to add a link to the page. If I remove the code for the link, the error disappears.
Does this make sense? If not, tell me what would better help decipher the error and I'll post whatever you need.
thanks,
Eric
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 14 June 2006 at 7:11pm |
|
I'm guessing you have modified the file in someway.
The error says that a ')' is missing from line 87 of includes/navigation_buttons.asp
Open the file with Notepad and have a look at the line in question, if you see that a ')' is missing then add it to the end of the line.
Failing that upgrade to the latest version 8.02 to fix the problem.
|
|
|
 |
ecollier
Groupie
Joined: 17 February 2004
Location: United States
Status: Offline
Points: 57
|
Post Options
Thanks(0)
Quote Reply
Posted: 15 June 2006 at 6:06pm |
Hey Borg, thanks for getting back to me.
this is the line I'm trying to add:
Response.Write (" <a href=""http://www.mysite.com/chat/default.asp""_self"" class=""nav""><img src=""" & strImagePath & chat_icon.gif"" align=""absmiddle"" border=""0"" alt=""" & strTxtChat & """>" & strTxtchat & "</a>")
I'm not a coder, so this looks to me like it's the same as the code that's existing. Can you tell me where I'm going wrong?
I would love to upgrade to 8.02 but I am in the process of converting over to iportalx and Drew is still working on the next version of software that incorporates WWF ver. 8. I love the WWF format and the way users interact. That's why I am trying to utilize a portal that uses WWF.
Thanks again,
Eric
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 16 June 2006 at 9:18am |
|
The syntax looks slightly wrong try:-
Response.Write (" <a
href=""http://www.mysite.com/chat/default.asp""
class=""nav"" target=""_self""><img src=""" & strImagePath &
"chat_icon.gif"" align=""absmiddle"" border=""0"" alt=""" &
strTxtChat & """>" & strTxtchat & "</a>")
|
|
|
 |
ecollier
Groupie
Joined: 17 February 2004
Location: United States
Status: Offline
Points: 57
|
Post Options
Thanks(0)
Quote Reply
Posted: 21 June 2006 at 8:15pm |
This is the error I get when placing your text in.
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'strTxtChat'
/includes/navigation_buttons_inc.asp, line 87
I'm thinking this has something to do with SQL. If that's the case, I gotta learn that too!! What a pain!
Eric
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 22 June 2006 at 10:05am |
|
You need to also place in the language_file_inc.asp file the following:-
Cost strTxtChat = "Chat"
|
|
|
 |