All source code in ASP/ VbScript Ask a ASP/ VbScript Pro Discussion Forum Categories All jobs in ASP/ VbScript
written,base,Matthew1471s,BlogX,preview,itple
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
ASP/ VbScript Stats

 Code: 287,569. lines
 Jobs: 118. postings

 How to support the site

 
Sponsored by:
Quick Search for:  in language:    
You are in:
 
Login


 

 


Latest postings for ASP/ VbScript.
A simpla ASP Login & Logout Page of E-commerce website for Registred Users
By SJPVTLTD.COM on 2/2


A simplem ASP Login Page for Registered User
By SJPVTLTD.COM on 2/2


Click here to see a screenshot of this code!The Real Estate - Search Engine
By Talal Hussain Al-Balushi on 2/1

(Screen Shot)

A simple ASP Registeration Page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


A simple ASP Forgot Password page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


Simple ASP inquiry form for a simple or e-commerce website
By Tejas Jayantilal Gandhi on 1/28


A Simple ASP Change of Password Page for E-commerce Website
By Tejas Jayantilal Gandhi on 1/28


A simple ASP Login Page
By Tejas Jayantilal Gandhi on 1/27


Free ASP Shopping Cart Software for Small Business
By Tejas Jayantilal Gandhi on 1/27


ASP Daily Hit Counter
By Tejas Jayantilal Gandhi on 1/27


AS400 Connection
By Talal Hussain Al-Balushi on 1/26


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!



 
 
   

Cool multiple language versions blog

Print
Email
 
winzip icon
Submitted on: 5/17/2004 6:11:20 AM
By: De Ming Shang  
Level: Advanced
User Rating: By 3 Users
Compatibility:ASP (Active Server Pages), VbScript (browser/client side)

Users have accessed this code 8613 times.
 
author picture
 
     I written it base on Matthew1471's BlogX. preview it,please visit: http://www.blanksoft.com/blogx The following is my jobs: ================================================ 1.multiple language versions,Now has Chinese and English Version 2.RSS 2.0 version feed support. 3.Redesign user interface, and provide several themes. 4.Add history archives list 5.Rename category online. 5.Edit otherlinks.txt online 6.Search blog 7.No components upload pictures 8.Visit counter(total,day-by-day,peak value,etc) 9.Remove ban IP 10.Modify Mailling list for every user to send mass mail. 11.Use absolute path instead of relative path to improve security of database,and you can use the config.asp in any directory. 12,Edit or Delete any blog online 13.WYSIWYG editor 14 In order to spacesaving,Only display the snippet of blog item in the home page

 
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!

    '**************************************
    ' for :Cool multiple language versions b
    '     log
    '**************************************
    copyright Matthew Roberts,deming shang
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.

Virus note:All files are scanned once-a-day by Planet Source Code for viruses,but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:
1)Re-scan downloaded files using your personal virus checker before using it.
2)NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 1 submission(s) by this author

 

 
 Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:
 
Your Vote!

What do you think of this code(in the Advanced category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
5/18/2004 12:45:21 PMMatthew James Roberts

wow looks like im famous ;-)

I'm checking out your code now, it looks like you've REALLY made it look good now, i'm impressed...
(If this comment was disrespectful, please report it.)

 
5/18/2004 1:52:07 PMMatthew James Roberts

ok, problem in Config.asp

If it cannot find Datafile, it hangs the whole Blog... I havn't looked into it for too long... but this is a quick fix

if not FSO.FileExists(DataFile) Then
set fso=nothing
response.Redirect "error.htm"
end if
(If this comment was disrespectful, please report it.)

 
5/18/2004 9:00:11 PMDe Ming Shang

Thank you Matthew and your blog program.
Forepart,i just want to use it myself,so i had done some modification and upload my server,but someone tell me who like it too,so I started supply the source code to some else.I think all of them will know "Matthew1471"(your name)
In order to more guys can share it ,I
convert it to multiple language versions.
(If this comment was disrespectful, please report it.)

 
5/19/2004 12:45:03 AM

the blog only deals with Year(Now()
when selecting month
has anyone fix for this?

(If this comment was disrespectful, please report it.)

 
5/20/2004 7:49:15 PMDe Ming Shang

thank you feedback,I had found this bug in nav.asp,and there is another bug,if logout the page will be displayed incorrect
(If this comment was disrespectful, please report it.)

 
5/20/2004 8:29:35 PMDe Ming Shang

strSQL="SELECT DISTINCTROW Data.Month, Count(*) AS iCount FROM [Data] WHERE [Year]=Year(Now()) GROUP BY Data.Month"

to

strSQL="SELECT DISTINCTROW Data.[Year],Data.[Month], Count(*) AS iCount FROM [Data] GROUP BY Data.[Month], Data.[Year];"
(If this comment was disrespectful, please report it.)

 
5/20/2004 8:36:38 PMDe Ming Shang

In login form:
input name="username"


to
input name="username" size="12"

input name="password" type="password"
to
input name="password" type="password" size="12"
(If this comment was disrespectful, please report it.)

 
5/20/2004 8:38:49 PMDe Ming Shang


sYear=year(Now())
to
sYear=cstr(rst("Year"))
(If this comment was disrespectful, please report it.)

 
5/22/2004 8:16:37 AMMatthew James Roberts

hehe this is all good stuff, it took virtually everyday for 4 months to finally nail bugs in my Blog, maybe you might want to have a "Change log" and change the version number each version?

De Ming Shang : no, it's great your having fun working on it :-) It definitly needed to go multi language, I just felt it might slow the code sumwhat by having all these different variables, but I admit it is quite impressive :-) Well done!
(If this comment was disrespectful, please report it.)

 
6/12/2004 4:17:57 AMastralis

I just downloaded and got an odd error:

Object Moved
This object may be found here.

Why would it have redirect issues? I uploaded it onto the server exactly as it appears in the download.

Did anyone else run into this?
(If this comment was disrespectful, please report it.)

 
7/16/2004 10:54:33 AMMatthew James Roberts

Shang you might want to upload your Blog to match some of the new features on mine

http://freewebs.com/matthew1471/
(If this comment was disrespectful, please report it.)

 
6/8/2006 2:56:56 AMindian language

how can i configure it to any indian language,
(If this comment was disrespectful, please report it.)

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author from the email account you registered on the site, so you can correspond directly.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
To post feedback, first please login.


 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Games | Feedback | Customize | ASP/ VbScript Home | Site Home | Other Sites | Open Letter from Moderators | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997-2010 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.   Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.