Print Page | Close Window

Editing default.asp and adding a link ?

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=8242
Printed Date: 06 April 2026 at 10:58pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Editing default.asp and adding a link ?
Posted By: india
Subject: Editing default.asp and adding a link ?
Date Posted: 20 December 2003 at 11:00am

Hello friends,

I want to edit default.asp files and add a link called Donations where we have PM, settings etc. How can i do that ?

After going to Donations, they have to select the product etc.

Thanks a lot BORG for this WONDERFULL program

Any help will be appreciated.

Thanks in advance




Replies:
Posted By: lahorei
Date Posted: 20 December 2003 at 11:30am
If u Want to add that link 韓 all forums then try footer file i think soo


Posted By: india
Date Posted: 20 December 2003 at 11:34am
I want on top so that everybody can see


Posted By: WebWiz-Bruce
Date Posted: 20 December 2003 at 12:17pm
Use the header.asp file.

You also have the navigation_buttons_inc.asp file where the links to things like 'Active Topics', 'Meberlist', etc. are stored.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: lahorei
Date Posted: 20 December 2003 at 12:46pm
oh yeah right navigation_buttons_inc.asp sorry cant remmeber b4


Posted By: india
Date Posted: 20 December 2003 at 12:51pm
Thanks for your reply, Borg
I have seen navigation file n i will edit it. but that header.asp has only 4 lines ? what to do with that?


Posted By: lahorei
Date Posted: 20 December 2003 at 1:56pm
yaaaaaar u have to do what u need in header file n just link it where u want okayz


Posted By: lahorei
Date Posted: 20 December 2003 at 1:57pm
Originally posted by -boRg- -boRg- wrote:

Use the header.asp file.

You also have the navigation_buttons_inc.asp file
i think there iz nothing speacil to do with navigation_buttons_inc.asp


Posted By: india
Date Posted: 20 December 2003 at 2:03pm

Originally posted by lahorei lahorei wrote:

yaaaaaar u have to do what u need in header file n just link it where u want okayz

i dont get u. header.asp doesnot have annything.

the navigation has links.



Posted By: lahorei
Date Posted: 20 December 2003 at 2:09pm
yes u can also do it like that go in header.asp n type an link which u want soo simple


Posted By: maddkat
Date Posted: 20 December 2003 at 6:28pm
Originally posted by lahorei lahorei wrote:

Originally posted by -boRg- -boRg- wrote:

Use the header.asp file.

You also have the navigation_buttons_inc.asp file
i think there iz nothing speacil to do with navigation_buttons_inc.asp


navigation_buttons_inc.asp  is the
file that contains all the links
as Borg said. I wouldent edit the header.
Only the navigation_buttons_inc.asp
You should use a response.write statment
to add it. I know this is the file because
this is the file I edited and the changed
and made an extra include to add my
menu on the left instead of the top.
Anyhow the only file you need to edit to
achive this is navigation_buttons_inc.asp

-------------
1+1-1=1


Posted By: india
Date Posted: 21 December 2003 at 1:08am

Originally posted by maddkat maddkat wrote:

Originally posted by lahorei lahorei wrote:

Originally posted by -boRg- -boRg- wrote:

Use the header.asp file.

You also have the navigation_buttons_inc.asp file
i think there iz nothing speacil to do with navigation_buttons_inc.asp


navigation_buttons_inc.asp  is the
file that contains all the links
as Borg said. I wouldent edit the header.
Only the navigation_buttons_inc.asp
You should use a response.write statment
to add it. I know this is the file because
this is the file I edited and the changed
and made an extra include to add my
menu on the left instead of the top.
Anyhow the only file you need to edit to
achive this is navigation_buttons_inc.asp

hi maddkat,

thanks 4 ur reply. as u said i opened navigations file and tried to edit it. now i tried to put the following code in all places i.e. guest, admin and members 1by 1.

Response.Write ("&nbsp;&nbsp;<a href=""donate.html"" target=""_self"" class=""nav""><img

src=""" & strImagePath & "help_icon.gif"" align=""absmiddle"" border=""0"" alt=""" &

strTxtDonate& """>" & strTxtDonate & "</a>")

if i put the above code it gives an error

Microsoft VBScript runtime error '800a01f4'

Variable is undefined: 'strTxtDonate'

/includes/navigation_buttons_inc.asp, line 74

If i put the folllowing code

Response.Write ("&nbsp;&nbsp;<a href=""donate.html"" target=""_self"" class=""nav""><img

src=""" & strImagePath & "help_icon.gif"" align=""absmiddle"" border=""0"" alt=""" &

strTxtActiveUsers& """>" & strTxtActiveUsers & "</a>")

it works fine.

whats the problem???

Thanks a loooooooot in advance



Posted By: WebWiz-Bruce
Date Posted: 21 December 2003 at 2:11am
Before using a variable you need to difine it.

Either place:-
Const strTxtDontate = "Donate"

in the language_file.asp or simply use text eg:-

Response.Write ("&nbsp;&nbsp;<a href=""donate.html""
target=""_self"" class=""nav""><img src=""" & strImagePath
& "help_icon.gif"" align=""absmiddle"" border=""0""
alt=""Donate"">Donate</a>")


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: india
Date Posted: 21 December 2003 at 2:36am

Originally posted by -boRg- -boRg- wrote:

Before using a variable you need to difine it.

Either place:-
Const strTxtDontate = "Donate"

in the language_file.asp or simply use text eg:-

Response.Write ("&nbsp;&nbsp;<a href=""donate.html"" target=""_self"" class=""nav""><img src=""" & strImagePath & "help_icon.gif"" align=""absmiddle"" border=""0"" alt=""Donate"">Donate</a>")

THANKS A LOT BORG. IT WORKS

U R GREAT



Posted By: india
Date Posted: 21 December 2003 at 2:42am

Borg, sorry for distrubing you again.

I linked that page. After that, should i use paypal's html code or there is some ASP script too ? i downloaded RPG Mod's but i dont understand whats that ?

Thanks a loooooooot



Posted By: WebWiz-Bruce
Date Posted: 21 December 2003 at 2:54am
Sorry I wouldn't know.

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: india
Date Posted: 21 December 2003 at 3:13am

Oops. ok.

Anyways, 1 more question plz

i performed a server test and i get the following results

SoftArtisans.FileUp (SA-FileUp 文件上传)  ×
 SoftArtisans.FileManager (SoftArtisans 文件管理)  ×
 LyfUpload.UploadFile (刘云峰的文件上传组件)  ×
 Persits.Upload.1 (ASPUpload 文件上传)  ×
 w3.upload (Dimac 文件上传)  ×

■ 常见的收发邮件组件

组 件 名 称 支持及版本
 JMail.SmtpMail (Dimac JMail 邮件收发) http://www.ajiang.net/ - 中文手册下载   4.3.0 Free
 CDONTS.NewMail (虚拟 SMTP 发信)   1.2
 Persits.MailSender (ASPemail 发信)  ×
 SMTPsvg.Mailer (ASPmail 发信)  ×
 DkQmail.Qmail (dkQmail 发信)  ×
 Geocel.Mailer (Geocel 发信)  ×
 IISmail.Iismail.1 (IISmail 发信)  ×
 SmtpMail.SmtpMail.1 (SmtpMail 发信)  ×

This states that only jmail and cdonts will work and no uupload component is installed. i tried cdosys and cdonts giving smtp server but doesnot work. i tried jmail also but does not work. moreover, what abt upload components ?
is there any other wayout ?

And also where can i get the online/offline mod u have used. i used maddogs but it corrupted forum

Thank you

 



Posted By: Semikolon
Date Posted: 21 December 2003 at 4:06am

i was a thread here about component less upload.. pure asp.. but that sucks..

if it corrupted your forums you did something wrong



Posted By: india
Date Posted: 21 December 2003 at 4:15am
Anthrax, i have seen that thread but it didnot work


Posted By: Semikolon
Date Posted: 21 December 2003 at 4:21am
then you have to ask your host to install an upload component or forget about it


Posted By: india
Date Posted: 22 December 2003 at 6:28am

Plz help me, friends



Posted By: michael
Date Posted: 22 December 2003 at 7:28am
He did. CONTACT YOUR HOST. There is nothing anyone here can do, if you don't have an upload component and the componentless does not work, change hosts or give them a call.

-------------
http://baumannphoto.com" rel="nofollow - Blog | http://mpgtracker.com" rel="nofollow - MPG Tracker


Posted By: Semikolon
Date Posted: 22 December 2003 at 10:09am

there are 3 ways to solve this problem:

  1. Ask your host to install an upload component
  2. change to a host that have upload component(s) installed
  3. Screw the whole upload sh*t, forget about it

thats all we can help you with.. if you need more help with this problem now, you cant get it..




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net