Localization :: Arabic Font Is Getting Corrupted Format?
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
Similar Messages:
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
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 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
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
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
Nov 3, 2010
How do i display arabic data in correct format?
The following information(fig -1) is displayed correctly in crystal reports viewer but when i export the report in to word or pdf, using the export feature in cr viewer, iam getting a differnt output (fig -2).
View 5 Replies
Feb 13, 2011
i want to set format for text like bold ,Italic or underline same as here on toolbar given i wan to do for text box and wanan save same one in database and get data from Db how i can do i dont want to use rich text box becoz i have alerady text box and dont want freetextbox.dll and i found by using this when i use italic i can not save in Database got error like db truncate error
View 4 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 17, 2011
i want to format money in two formats
1) US dollors like this $126,765
2) is normal only seprate with comma when thousand occurs like this 126,765
View 5 Replies
Dec 2, 2010
On the server is a form format of the amount in 12:51.How do I change the format in the form of 12.51?
View 4 Replies
Nov 18, 2010
i am facing a problem to change the date format in label.
i get the date from database with format("yyyy-MM-dd")
[Code]....
however, when it display to the label, it change to different date format because it follow the date format which is set in control panel. how to make the date display in label to a fix format? i want the date format ("yyyy-MM-dd"). the below coding is fail.lbl_approval_approve_date.Text = Format(lbl_approval_approve_date.Text, "yyyy-MM-dd") the date will display in excel which i generate it to report viewer.
View 3 Replies
May 8, 2010
I can displays the number value as currency format but I wanna show it as Euro, English sterling and USd !
<asp:Label runat="server" ID="UnitPriceLabel" Text='<%# Eval("UnitPrice", "{0:C}") %>' />
I used the above code ! What can I do ?
View 6 Replies
Nov 22, 2010
I have an Label where I need to show the value 0.00 if the culture is Englidh and 0,00 if the Culture is french. I am using the following code but it does not work.
string minAmount = "0.00";
DisplayLabel.Text = minAmount.ToString(NumberFormatInfo.CurrentInfo);
View 1 Replies
Oct 7, 2010
I am working on globalization project.In some scenario I want to convert date in european format and sometimes in US format.I have developed method as follow.
public static string
ToCultureDate(object
oValue,string culture)
[code]...
View 2 Replies
May 21, 2010
I'm suffering a well known problem with globalization, but, I tried to find the answer in the forum and got nothing. My computer has regionalization or globalization from Colombia, as i live there. I made my site and when I published I started to get errors on dates. This errors happen because in Spanish the date format is 'dd/MM/yyyy' being dd:day, MM:month and yyyy:year. In English the date format is 'MM/dd/yyyy'.There is any form or way to correct this in the entire site?? Maybe something in the web.config file?
View 2 Replies
Mar 17, 2010
We are developing an application in asp.net 2.0 where we have a functionality to export data to Excel file. We used Microsoft.Office.Interop.Excel to export data to Excel. Everything is working fine. But, we are facing a problem in formating numbers which need to be shown in German format(example: 345.789,78). For this, we added German culture info("de-DE")in code as well as web.config file. But, still it showing in US format( only. find below the code to add and format the data in excel cells.
oWorkSheet.Cells[ExrowIndex + 1, ColumnIndex] =Convert.ToDouble(ContractAmount)
oWorkSheet.get_Range(oWorkSheet.Cells[ExrowIndex + 1, ColumnIndex], oWorkSheet.Cells[ExrowIndex + 1, ColumnIndex]).NumberFormatLocal =
"0,00.00";
View 7 Replies
Feb 10, 2010
I am having the language as English(unite states), on changing the language to English(United Kingdom) the date format is changed to dd/MM/yyyy.
but on using the date class in the asp.net application, this fetches the date format as the mm/dd/yyyy, which is the system date format.
but the logged in user date format is dd/mm/yyyy
so how to get the date format of the logged in user in asp.net applications.
View 3 Replies
Jan 6, 2010
Is it possible to change the font and font size of the data in the dropdown of a Combobox?
I've tried;
.CustomComboBoxStyle .ajax__combobox_itemlist li {
width: 150px;
font-family:Verdana;
font-size:smaller;
}
and setting the CssClass to it, but doesn't affect the font. I can adjust the width of the dropdown object, but I need to change that gawd awful font.
View 7 Replies
Aug 9, 2012
I use this class for my DropDownList
.DPCDDL {
float:left;
width:200px;
height:20px;
margin-top:1px;
font:bold 12px Tahoma;
}
In my dropdownlist just selected item font be (bold 12px)
I want that all item that are in my dropdownlist font be bold 12px how i can do it?
View 1 Replies
Jun 24, 2010
Just upgraded from SSRS 2005 to 2008 (on a test server). I have a report with a list and in this list are about a dozen fields in textboxes whose fonts are all set to Verdana 8pt. When I run the report from the Report Manager, one of the 12 fields is displaying in a serif font (like Times New Roman) at around 12pt. When I preview the report in Visual Studio every field looks fine and when I run the same report in SSRS 2005 every field looks fine. Has to be a SSRS 2008 bug!
View 3 Replies