Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read

Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
Thread Tools
Old 03-24-2008, 02:13 PM   #1 (permalink)
Registered User
 
Join Date: Mar 2008
Posts: 3
OS: Vista


saving changes in Notepad [Moved from IE]

I designed my website(s) using PrintShop22. I ran them thru an html validator which suggested I add a few lines of code at the beginning for search engines to crawl. So I did, but Notepad won't save the changes. Any suggestions?
www.raptureink.com
fuzzyhat is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Sponsored Links
Old 03-25-2008, 01:11 AM   #2 (permalink)
Moderator, Microsoft Support
 
Go The Power's Avatar
 
Join Date: Mar 2007
Location: South Australia
Posts: 10,718
OS: Windows XP Home SP2


Blog Entries: 1
Send a message via MSN to Go The Power Send a message via Skype™ to Go The Power
Re: saving changes in Notepad

Hello and welcome to TSF

I have moved your thread to web design as I think you will get more help there.
__________________
Merry Christmas

Go The Power is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 12:03 AM   #3 (permalink)
Design Team Member
 
Jaxo's Avatar
 
Join Date: Feb 2008
Location: Deming, NM
Posts: 291
OS: XP SP2 & Vista


Question Re: saving changes in Notepad [Moved from IE]

Hello fuzzyhat,

First thing I would want to know is if you get any kind of error message when you try to save it? You are using vista, correct? From a search online it sounds like security issues can keep notepad from saving the changes.

Perhaps you can try this?

Select the 'Save as type' to All Files, then save it to the desktop. Replace the original (after backing it up) with the version on the desktop.

Let us know if this works.
Jaxo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 12:14 AM   #4 (permalink)
Registered User
 
Join Date: Dec 2005
Posts: 66
OS: WinXP home


Re: saving changes in Notepad [Moved from IE]

if that doesn't work i have the simple method i use whenever any text editor won't save.

Once changes are made, highlight everything, and press ctrl+c.

Now open a new textpad thing and press ctrl+v

now save and voila no problems because its a fresh save :P
__________________
Mobo: Asus Striker II Formula skt 775 Ram: 2x Corsair 2GB DDR2 PC2-6400 800MHz in dual channel Processor: intel q6600 quad core, 2.4ghz HD: 2 x Maxtor 500GB 1x Maxtor 1000gb PSU: Tagan 700w ATX2 Power Supply Sound: Asus soundcard that came with mobo GPU: 2x MSI 7900 GT/GTO 512mb memory in SLi
wowfood is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 12:16 AM   #5 (permalink)
TSF Enthusiast
 
sobeit's Avatar
 
Join Date: Nov 2007
Location: NEAR
Posts: 6,174
OS: windows/linux


Send a message via MSN to sobeit Send a message via Yahoo to sobeit
Re: saving changes in Notepad [Moved from IE]

try saving the page in notepad as a .txt file, then rename it to html in windows explorer. If that does not work, try windows wordpad.
__________________
Do not feed the trolls.
sobeit is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 11:22 AM   #6 (permalink)
Registered User
 
Join Date: Mar 2008
Posts: 3
OS: Vista


Re: saving changes in Notepad [Moved from IE]

Thank you Sobeit666, yours' was the correct solution. What started my whole Notepad experience was trying to add code at the beginning to specify DOCTYPE. I don't know how to write code (yet) so I tried to copy and paste a few lines I found so that SE crawlers would find my site easlily.
After I added the code I tried an html validator and it went crazy so I removed the code that I added yesterday and now I'm back to square 2.
fuzzyhat is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 11:22 AM   #7 (permalink)
Registered User
 
Join Date: Mar 2008
Posts: 3
OS: Vista


Re: saving changes in Notepad [Moved from IE]

Thank you Sobeit666, yours' was the correct solution. What started my whole Notepad experience was trying to add code at the beginning to specify DOCTYPE. I don't know how to write code (yet) so I tried to copy and paste a few lines I found so that SE crawlers would find my site easlily.
After I added the code I tried an html validator and it went crazy so I removed the code that I added yesterday and now I'm back to square 2.
fuzzyhat is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 03-26-2008, 11:45 PM   #8 (permalink)
Design Team Member
 
Jaxo's Avatar
 
Join Date: Feb 2008
Location: Deming, NM
Posts: 291
OS: XP SP2 & Vista


Exclamation Re: saving changes in Notepad [Moved from IE]

Glad you figured out the notepad problem.

For your doctype issue you briefly touched on I think I have a solution for you. The below code was pulled from http://www.w3schools.com/ which is a great resource if you haven't already checked them out. Looking at your code I would figure doctype of html 4.01 transitional. So you would want to add below code at the top of the document.

Code:
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
If you read up on the html tutorial on w3schools website it will give you more information on why I think the doctype above works for your document. It will also help you get your code ready for validation.
Jaxo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -7. The time now is 01:10 PM.



Copyright 2001 - 2008, Tech Support Forum

Search Engine Friendly URLs by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82