Localization :: Which Technique Is Used In Handling Multilingual Implementation
Apr 19, 2010Which technique is used in handling multilingual implementation? What is the best way to implement it?
View 3 RepliesWhich technique is used in handling multilingual implementation? What is the best way to implement it?
View 3 RepliesI need a sample project for Globalization (multilingual) developed in VB.NET (2008).
View 1 RepliesI've got a requirement to develop a Multilingual webform (Chinese, Spanish, Portugese, Russian etc). I am using VS 2005, .NET Framework 2, C# laungauge, SQL 2005.
View 5 RepliesIam going to develop the Multilingual website using c# asp.net 3.5 i want to know what things are important to know or from where i can get start any resource or links or help is apperiacted.
View 15 RepliesActually we need to generate multi-language resource files based on our default 'English' langauge resource file. The idea is if we can input this 'English' language resource file in that tool and it can generate another resource file for us in the required langauge.
View 4 RepliesI have implemented multilingual in my application. The text display is not proper for different language. For example in Spanish the label text is fully visible but if it will display in french then the text width is getting increased so it is not fully visible and for some other langauge it comes in second line, how to set the width and height according to langaue or is there any generic format to set?
View 3 RepliesI have developed a asp.net website.Now what i want is that it should be multilingual.I don't want a page to be multilingual.I want the whole website to be multilinual.I used the Culture settings as
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-HK"); System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-HK");
This is the setting i used for the culture but my website didn;t got converted.I searched a lot on google but not able to find any solution.Also the resource files process a bit too hard Please let me know how i can achieve this.Using some free third party tool or some jquery or some javascript code or some asp.net implementations which i can complete quickly.
How to apply theGlobalization and Localization asp.net with C# ....
View 1 RepliesI have developed one demo for multilanguages website without master page ,and its work fine but when i developed actual website with using master page then its not working .. I have also not understand what is the problem in that ..
View 1 RepliesWhen developing a rather complex web application that has to be localizable, it can be quite a dawnting task to make even the smallest change like changing a name for an abstract object type.To illustrate the problem, let's assume the user can create objects through our web application called a "FooBar". The web application most probably have numerous resource strings making reference to the object type "FooBar", for example, "Click here to create a new FooBar", or "Delete all the selected FooBars".During or even after the development life cycle of the web application, the owners decide that "FooBar" is not an appropriate name, and would like it to be renamed to "Thingamajic". In the web application there are thousands of references to "FooBar". Now one has to find all and replace them.
View 1 RepliesI heard that DataReader works on forward only readonly fashion and at a time it willread a single record.Suppose when i execute the below code
SqlDataReader reader=cmd.ExecuteReader();
gv1.DataSource=reader;
gv.DataBind();
How the does the gridview populate all records?.As the reader is capable of reading one row per read,I thought only the last row is available for GridView to display.
Nifty and free asp.net controls that replicate the following databinding technique? [URL]
View 11 RepliesI would like to secure any URL below the http://MyServer/Admins and limit it to a specific role.
In webforms it was straight forward. I just put a child web.config in the /Admin/ folder and add <authorization> <allow roles> tags to it.
How would be the equivalent technique in MVC?
i have table contain two column id and word .word column may contain one word or two or three ex ( computer , computer software , computer software computer )i want search the text if it contain any word in that table .
View 2 RepliesIn my new ASP.NET EF4 project, I find myself having to do a lot of maneuvering around null entities. For example, I may have a Project Entity with a related User Entity exposed through an Assignee property. Suppose I need to send an email to someone indicating who the Assignee is, I need to say:string x = "The Assignee is: " + TheProject.Assignee.Name;but I'll get an exception if there is no Assignee as the property is null (I want nulls by design) and I can't fetch the .Name property on that null.
View 4 RepliesI need to highlight active link in the menu. My menu is in the master page by the way. I'm looking for the best way to implement this?
View 3 RepliesI am looking at a design pattern which has come up in quite a few of my firm's projects.It has historically functioned correctly, however I have heard some other developers argue that there is a possibility of session corruption using this pattern. I'm looking for insight from other .NET developers here on Stack Overflow. Basically, there's a class -- usually either static or a Singleton pattern, depending largely on the developer who wrote it -- stored in App_Code.This class encapsulates access to the current session via properties.All of these properties take the form of:
[code]...
However,because this is just a static entry to HttpContext.Current.Session,it seems like it should be safe, as it is not fundamentally any different than the Page class encapsulating this in the Session property.As I said,no other site on which my company has worked that used this pattern saw it ever have any issues -- and that includes some pretty large and highly active userbases.But I want to just get a fresh perspective.
Are there potential multi-user issues, race conditions, or other failings/flaws which specifically could cause session corruption in the above pattern?
What's the best technique to hide part of a view depending of the credentials of the user?
To explain my self little better and as example i have the following code in my view:
<%= this.Model.Name %> <%=Html.ActionLink("Edit",....)%>
And i would like to hide the edit button for those that aren't administrators for instance...
Could you give me a hand?
I am working on a project that uses data scraping technique to retrieve some url links. I encounter this problem when i pass in the url of a [previous page button] link frm the html code and pass it in to httpWebRequest, the httpWebResponse that i get back is different form the actually content. i have been try to sovle this problem for days and no result, as anyone encounter similar problem and manage to sovle it? below is my sample code: [previous page button] [URL] note: i have change the domain name to a dummy address which is localhost
[Code]....
I have a repeater with about 100 rows, and 4 columns in each row. something like this table:
Username HasIpod HasGymMembership HasCar
``````````````````````````````````````````````````````````````
User1 chcekbox checkbox checkbox
User2 chcekbox checkbox checkbox
User3 chcekbox checkbox checkbox
User4 chcekbox checkbox checkbox
well, you get the idea.The admin can tick/untick any box anytime and click on a "Save" button at the end of page and thats when I need to update the database. I need to add a row in one of the table if a certain checkbox is checked, delete it if its unchecked.I can just loop through the repeater and VERY EASILY do it with each row. but my concern is that, at the worst case, this will use about 100 rows X 3 = 300 database accesses. Thats bad right?I thought of concatenating all values into a form of csv.. something like:user1id,1,0,1;user1id,0,1,1just a list of userid, its values separated with , and the next user's values separated with ; and in the database I can just use a split function and a bunch of while loop and update accordingly.but It just doesnt satisfy me for some reason. Is there a better way to deal with a such a situation? I am sure this is not a unique case, what do you guys do in a scenario?
any asp.net cms with "easy" multilingual support?
View 8 RepliesI'm replacing a website that was previously HTML only.
I put a GridView on the French and the English page and I'm getting 2 fields: A date and a currency.
For the date, I need to transform it into a long date format. The English part isn't very hard, but when I get to the French page, I can't transform it into a long date format with French words (i.e.:Mardi instead of Tuesday).
Is there any way to format the string with French date words instead?
i am so much eager to develop the multilingual application. But i don't know how to start. how to create the application can i know what is the process to create the application. other wise give me a simple example.
View 1 RepliesI don't understand where to put the Resources and how can we take the value from that?
View 1 RepliesI am trying to create a table in my MS SQL database for Languages. I want to store an English name of Language and a local name of language in the database.
i.e.
Language, Language(local)
English, English
German, Deutsch
Italian, Italiano
Japanese, 日本語
...
...
I have 279 languages that I want to import, but when I import it shows '?????' for some like japanese, Russian and arabic etc. The database Collation is Latin1_General_CI_AS.
I would also like advise on multilingual websites; if i have a database of product descriptions and I want to have translation in multiple languages, should I go for separate databases or Can I have translation in one databse? (I prefer not to duplicate data!). Anything else to make sure users are able to write comments in different languages (char encoding on web?) and can be stored in database.
I have managed to import data but, I cannot select and view correctly and therefore cannot verify if import was successful; I am getting following results on select: