Localization :: Application Not Supported Arabic On Server?
Feb 16, 2010
My application is in arabic. When i run my application locally it is working fine but after uploading it on the server, the arabic content is not showing. All my labels and HTML content are not showing in arabic. I am using Master Page.
View 2 Replies
Similar Messages:
Oct 28, 2010
I would like to develop a server push supported application. Can anybody suggest which technology i should concentrate it reach this. I have already written a WCF Service using WS Binding. do i have to use JQuery? Commet? I have tried silverlight but it does support only polling. I am not looking for polling mechanism.
View 3 Replies
Dec 1, 2010
I need to know if .net 4.0 is installed on server or not. How can I do that?
View 6 Replies
Apr 14, 2010
I have developed a website in English, i want this application to be in arabic also. Say suppose there are 50 members 30 knew english and 20 knew arabic , when i open my application it should open to them in specific language.
my application will have many entry fields(name,address..) and buttons to save , search. The arabic text entered in textbox should be viewable by both english and arabic known guys in their respective language. (ie) the arabic text should be readable in english for english known person and in arabic for arabic known person and viceversa., so that 50 member details should be viewable to 50 persons in their language.
View 7 Replies
Jan 21, 2010
I am sending arabic text in querystring to SMS gateway website by using the follwoing code:
protected void Button1_Click(object sender, EventArgs e)
string cellno,username,password ;
cellno = "966505326609";
username = "Aazar Jameel";
password = "12345678";
string val01,val02,val03,val04;
[code]...
View 2 Replies
Jun 28, 2010
Am developing a SMS Application, from there I have to send Arabic text by SMS, problem is that SMS Gateway does not accept Arabic text directly, Gateway accept Arabic text in Unicode/UCS2 format. So I need code to convert Arabic text in Unicode Format.
View 5 Replies
Feb 6, 2010
i am getting arabic words like as follows in my system (server 2003) "ÎÕÈ ÈÎÇ" .
same words getting correctly in another machine.
artro.ttf and artrbdo.ttf files i nstalled in font folder.
View 1 Replies
Mar 10, 2010
i am using COM Component in my asp.net project. My problem is that i am not able to assign the Arabic string to the property of that component. Whe i debug it shows that input textbox has arabic text and when i assign that text to the property of my COM Component then it shows that in the property is save. where i have to change my .net code. is there any settings related to globalization etc.
View 1 Replies
Feb 7, 2010
I'm working in an ASP.net web application. I'm trying to export a crystal report file (.rpt file) to pdf viewerthe following code:
rystalDecisions.CrystalReports.Engine.ReportDocument doc = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
doc.Load("C:\Users\amino\Documents\Visual Studio 2005\WebSites\WebSite1\Report.rpt");
CrystalReportViewer1.ReportSource = doc;
[code]...
View 3 Replies
Jun 4, 2010
i want to display dynamic text like the News in Arabic and english Language should I create two fields in the database For arabic and english?and how to select the english News when the user select English? (Note:i know to display the static text like the menus in arabic and english)
View 2 Replies
Apr 14, 2010
I have a gridview with date column, and my datastring format is: [Code]....
I need to display this in arabic encoding for my arabic pages.
View 2 Replies
Dec 4, 2010
how to type the user in textbox in arabic text without changing the language in their pc?! using c# .net
View 3 Replies
Mar 11, 2010
I'm creating a multi-language web site using ASP.NET and Framework 3.5. So far no login required. Everything has been working fine. But when I update my windows 7 and software and compile the site the follow error appear
Server Error in '/' Application.
Compilation Error
Description:
An error occurred during the compilation of a resource required to service this request. review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30554: 'ProfileCommon' is ambiguous.
This are my codes:
web.config
<connectionStrings>
</connectionStrings>
<system.net>
<mailSettings>
<smtp from="[URL]">
<network host="[URL]" port="587" />
</smtp>
</mailSettings>
</system.net>
<system.web>
<anonymousIdentification enabled="true"/>
<authorization>
<allow users="*" />
</authorization>
<!--profile inherits="System.Web.Profile.ProfileBase"-->
<profile defaultProvider="AspNetSqlProfileProvider" inherits="System.Web.Profile.ProfileBase">
<properties>
<add name="UICulture" allowAnonymous="true" defaultValue="es-PR"/>
<add name="Culture" allowAnonymous="true" defaultValue="es-PR" />
<add name="PreferredCulture" allowAnonymous="true" defaultValue="es-PR"/>
</properties>
</profile>
<globalization culture="es-ES" uiCulture="es-ES"/>
<!--
Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development.
-->
<compilation debug="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<!--
The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
default.aspx
<script runat="server">
Protected Overrides Sub InitializeCulture()
Dim CurrentContext As HttpContext = HttpContext.Current
Dim UserCulture As String = CurrentContext.Profile.GetPropertyValue("PreferredCulture").ToString()
If UserCulture <> "" Then
Thread.CurrentThread.CurrentUICulture = New CultureInfo(UserCulture)
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(UserCulture)
End If
End Sub
Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
If Not IsPostBack Or CStr(Session("CultureName")) <> CultureInfo.CurrentCulture.Name Then
Session("CultureName") = CultureInfo.CurrentCulture.Name
End If
End Sub 'Page_Load
Protected Sub SetLanguage(ByVal sender As Object, ByVal e As EventArgs)
'Save selected user language in profile
Profile.SetPropertyValue("PreferredCulture", "es-PR")
'Force re-initialization of the page to fire InitializeCulture()
Response.Redirect(Request.Url.LocalPath)
End Sub
Protected Sub SetLanguageEn(ByVal sender As Object, ByVal e As EventArgs)
'Save selected user language in profile
Profile.SetPropertyValue("PreferredCulture", "en")
'Force re-initialization of the page to fire InitializeCulture()
Response.Redirect(Request.Url.LocalPath)
End Sub
</script>
If I run the olds files with the precompiled file this work.
View 1 Replies
Mar 18, 2010
As i am using asp validation and they are working fine,my next issue is how to make appear the requiredfield validator into arabic as well,because i am developing multilanguage webisite n now how can i make the error message to be appeared in arabic when
the arabic button is selected
< asp:RequiredFieldValidator
ID="RequiredFieldValidator1"
runat="server" [code]...
View 8 Replies
Jan 19, 2011
i want to switch between english and arabic languages.
View 1 Replies
Dec 16, 2010
I'm using httpwebrequest but I have a problem when I execute the codes. Like this..in title english = browser not supported. how can I skip this protection
this is a facebook protection.
View 2 Replies
Feb 12, 2011
I have my field type nvarchar(50) and also save my aspx file with unicode with/ (without) signature?But still I am getting the return value ????? and saving also in database by ?????
I am usin SQL 2005 VS.net 2008 and also using some AJAX Controls in my file Like Clander etc.how I can Save and Retrive the Arabic DAta from my Entry Page?
View 5 Replies
Jun 23, 2010
how can i make hijri calender(arabic one) i prefer using custom control i tried Telerik but it has problem it display monthes in hijri but year still 2010 ,2009 and so on,i aslo want the user to select date (hijri) from calender and can not type on it just select between date and save it in database
View 3 Replies
Mar 28, 2010
I have been working on developing a website using -
Visual Studio 2008 Professional (.NET 3.5) and SQL Server 2000.Now I have it work perfectly on my local machine. Now when i upload my website on my Windows 2003 Server, I get an error saying
"Type 'System.Web.UI.WebControls.Parameter' does not have a public property named 'DbType'".
It alse gives me error when there exist a Date in the Page Designer but that's fine when I use DateTime. I think this might be an issue since DateTime no longer is supported in SQL Server 2005.
Now to resolve this issue on my server thus far I simply rename them to Type and DateTime and all is well. But On Changing and editing locally and then uploading again, I need to redo that.
View 1 Replies
Jul 20, 2010
My web app, Web.Config file is larger than 250 kb. To resolve this problem, before on windows server 2008 iis 7.0 32bit, i have created a key with regedit in HKLMSoftwareMicrosoftInetStpConfigurationMaxWebConfigFileSizeInKB, and this work perfectly.
Now on windows server 2008 R2 64bit, this key is not more supported, it's my idea.....
What is the solution ? I can't split my web.config.....
How to bypass this security restriction by default ?
View 2 Replies
May 17, 2010
Is SQL Server Express supported in Windows 7 Starter edition?
View 3 Replies
Mar 8, 2010
i want to develop an asp.net mobile web application whith Ajax features. i dont khnow whether these technologies are supported in mobile developpement?
what stups should i follow to make such project ( IDE + SDK....) . finally what are free windows mobile emulator ( except Microsoft ones)?
View 7 Replies
May 20, 2010
I have never created my own solution before now. I have always modified existing solutions and know how to do it. For some reason, this new solution isn't connecting to my SQL server correctly.
I am using VWD 2008 Express Edition.
I have MSSQL 2008 Developer Edition.
I have used aspnet_regsql.exe to create the tables in my SQL DB.
I have added the following to my webconfig:
[Code]....
But for some reason, when I try to use the Web Site Administration Tool it thinks it is not setup.
What am I missing?
View 1 Replies
Sep 4, 2010
I am using sql server fulll edition.any idea how should I solve this issue, I search on net but not found any helpful answer.
View 4 Replies
Nov 2, 2010
In my application i used .resx files. Now i need to deploy my application in a single dll. Once i deploy and add this dll as a refernce in other client applications then the culture specific dlls are added under Bin directory in client application. I don't want this to happen. Should i embed or link the satellite assembly in my applicaion to avoid this? if so how to do this?
View 3 Replies