arabic site onto discountasp appeares as strange characters

Discussion in 'ASP.NET 2.0' started by saidimohd, Sep 14, 2010.

  1. I designed Arabic site using vs 2005 it appeared will on my laptop

    But when I upload the site onto discount asp it appears as strange character

    Any buddy can help with these problems?
     
  2. mjp

    mjp

    Character encoding is application dependent. Meaning your application has to specify the encoding you want to use.

    If you search for "Arabic" here in the forum you will see a lot of threads about this and you should be able to fix the issue.
     
  3. i put like this but the same problem

    you can see by your self from mthe site

    http://www.itdeliverysolutions.com/


    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <meta http-equiv='Content-Type' content='text/html; charset=windows-1256'>
    <title>Untitled Page</title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    بسم الله الرحمن الرحيم<br />
    الحمد لله رب العالمين</div>
    </form>
    </body>
    </html>
     

Share This Page