These days it’s normal to employ an established platform such as WordPress or Jumla to create a web site or blog, but you may prefer to move differently, in which case this program might prove very useful. You can have it also as a means to edit some pages from older web sites or html […]
Tag: asp
Receiving Unicode UTF-8 email messages with all those international characters and accents seems impossible, and some solutions that are usually proposed, such as having the body part defined as “utf-8″ are worthless. You’ll never see your forms work, unless you define the UTF-8 encoding not in the page that actually sends the email, but to the page where the […]
You may like to include some data only if your visitors are in your front or root page, or to exclude some data in the same condition. In this case you need to Request.ServerVariables, but it won’t help to use the URL variable, although it seems relevant. You cannot also use the SERVER_NAME variable, since […]
If accented characters appear as strange symbols on screen, you may need to remove the accents, or of course even better to convert them so that they appear as intended. To remove the accents use the replace function Replace(YourString,”é”,”e”) To convert them, use the Server.HTMLEncode method Server.HTMLEncode(YourString) Enjoy!
Convert ASP code to PHP, with Asp2php
If you are used to ASP scripting, feeling awkward when you see a line of PHP code, you will find Asp2Php, very useful. Asp2Php is a tiny utility that will help you convert an asp script to its php equivalent. Asp2Php may misinterpret some parts, but most of the time it works; it will prepare […]