Web Forms :: Change Web Application Language To Arabic?
Jan 19, 2011i want to switch between english and arabic languages.
View 1 Repliesi want to switch between english and arabic languages.
View 1 Replies I am using crystal report Xi release 2.
How can I change my reports English to Arabic language?
I have an application to create report in english and arabic language.In SQL report server 2008 R2, Is it possible that single report work for english and arabic language? In arabic language we have to change some title in arabic language and also have to support mirror, means all columns start from right to left( default
behaviour in arabic site, language).I have searched and found it is possbile with RDCE(Report Definition Customization extension).
i have a problem,when i export grideview to pdf,not show coulmname with formate farsi why?
View 1 RepliesI used below code for insert limit character in textbox
<asp:FilteredTextBoxExtender ID="FTBE1" TargetControlID="txtadd" runat="server" FilterType="LowercaseLetters,UppercaseLetters,Numbers,Custom" ValidChars=" ">
</asp:FilteredTextBoxExtender>
Now problem is that when I want insert text in persian language it didn't insert I can just enter text in English language...
I'm using ckeditor in my CMS for website .. everything working fine ,, but when we write in Arabic and display the page the text always goes left even if we choose right from CKeditor ..
View 3 Replieshow can i change exception message language to English without changing the users language
[Code]....
I have created a web application and generated local resources. Its working when user select language from browser. But what i want is, when user select language from dropdown list, i want to change the pages according to selected language. i can save user selected language in a session. then how should I change/assign local resource file to web page?
View 2 RepliesAs 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]...
I've a gridview with one textbox column and 1 label.
Based on language selection im changing master page and gridview will be bind with data based on language from database . When change the language the labels will be binding with data based on language . but textbox value is not binding properly.i.e;for example i've 2 languages English and Arabic . First i've logged with English Language gridview is binding correctly after chnage language to Arabic the textbox value is not binding is displaying with data previously whatever binded with english language. Other than this textbox remaining label data bindind with data in arabic language.
<asp:GridView ID="gvText" runat="server" AutoGenerateColumns="false"
onrowdatabound="gvText_RowDataBound">
<Columns>
<asp:TemplateField HeaderText=" SeqNo">
[Code] .....
And here is grid binding Method:
private void BindGrid() { DataTable dt = new DataTable(); dt.Rows.Add(); dt.Columns.Add("SEQUENCENO"); if (Session["LanguageID"].ToString() == "2")
dt.Rows[0][0] = "ENG";
else if (Session["LanguageID"].ToString() == "1") dt.Rows[0][0] = "ARB"; gvText.DataSource = dt; gvText.DataBind();
}
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.
can we change the language of an existing project or of any windows form or any web form such as from visual basic to c sharp
View 7 Repliesi have 2 Text-box in my web form.
when i got focus to textbox1 - i want that the language will be hebrew
and when i got focus to textbox2 - i want that the language will be english
how to do it ?
I'm not sure what is the best way to create website that allows user to change its language. The website is really small, it has couple of pages (Default.aspx, Location.aspx, Catalogue.aspx and Info.aspx), but I'm not sure how to change the language of the content. User can change the language by clicking on one of the four image buttons which then add "lang" query string to the url, but whenever page reloads it keeps adding more and more "lang" querystrings.
View 2 RepliesMy 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 RepliesLike the title says, when I try to get a control (HiddenField) using this.Parent.FindControl it returns an exception. Curiosly this only happens when I change the browser language to Italian, English but not Spanish (I'm from Argentina so everything in my computer is spanish).
View 3 Repliesi want to make a multilanguage website in asp.net
i want to give the dropdown on top in which user will select the language and according to language selection the website content will be changed
I have the text in the database: "My friends". How comparison to control (DropDownList), change to another language?In the database I want to keep the words "My friends"in GridView control, I wish that the words "My friends" should be replaced with "My Friends" in another language.Using DropDownList controls GridView controls I want to change everywhere, "My friends, into something else.
View 9 RepliesMy page won't change the language could someone have a look at my code and tell me what im doing wrong it always goes to the default language
public partial class ChangeLanguage : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
SortedDictionary<string, string> objDic = new SortedDictionary<string, string>();
[Code]....
I'm able to change the language for my pages, however if I select french and I am on a current page and if I try to load another page, that page won't be in french. How can I set it so it is consistent throught?
Toggle Button in master page:
If Page.Culture = "English (United States)" Then
Response.Redirect(Request.Url.AbsolutePath + "?lang=fr-CA")
ElseIf Page.Culture = "French (Canada)" Then
Response.Redirect(Request.Url.AbsolutePath + "?lang=en-US")
End If
and in every page:
Protected Overrides Sub InitializeCulture()
Dim lang As String = String.Empty
lang = Request.QueryString("lang")
If lang IsNot Nothing Then
Session("culture") = lang
[Code]...
I am working on a ajax Calendar Extender control and i am trying to change the language of the calendar pop up to spanish.
View 1 RepliesMy page won't change the language could someone have a look at my code and tell me what im doing wrong it always goes to the default language
View 3 RepliesHow can I chnage the default language in a database? I'm running SMSSQL 2008 and I have not access to the server physical. I have to do this by SQL. I have vs 2010 and SQL Managment Studio
View 1 RepliesI am new to this forum and want to know how can i change the page language.
For example English -> Hindi..
how to change the wording of the language?
My idea:
In my text file, labeled according to the selected language.
Examples:
English: How are you?
Germany: Wie geht es Ihnen?
I have a document default.aspx
I have a combobox in which languages English and Germany. English click, print: "How are you?" or Germany, print "Wie geht es Ihnen?"
How do they do ? How to display text on the page default.aspx?