DataSource Controls :: How To Make Multilanguage Website Using Database
May 16, 2010
how to create multilanguage website using database not localization
when i select desired language ,data in datagride display with that language. how to make that to all my website pages
View 3 Replies
Similar Messages:
Mar 22, 2010
Actually I'm not a professional in ASP.NET. I'm going a project that needs to support two languages (Russian and English).I've already completed the main parts and the site is now 95% functional.However, now I need to enable language selection on the site.
I'm going to do it with DropDownList, where a user chooses one language from DropDownList, the content must change to particular language.
All texts are displayed using server controls like Labels and Literals. Links are in Hyperlink or LinkButton.
I did some research to handle with my condition, but no-one suits on my condition, because I've almost completed the application. How to generate Global Recourse files for controls on the page?
View 3 Replies
Jul 11, 2010
i need to set a translation for every language of my website in the registration panel i am looking for an example of Jquery where i can set the translation of the error
a good validator with ballon is here:
[URL] but it cannot allow set message
this other example is good to, and allow personalization of message:
[URL] but do not have baloon and it is uncool
View 3 Replies
Jan 25, 2010
I would like to develope multilanguage website (English,Deutch) using ASP.Net MVC. Using MVC the URL should have the format (Controller / Action / Identifier) .Now How could I include Language part in URL. Suppose I want addresses like (/EN/Pages/View/xxx).
View 5 Replies
Aug 16, 2010
I try to connect my database for so long so i wrote two type of codes. Let's discuse first on.
I have database called PhoneDirectory.
It have only one table named Residents.
I have button wiht ID="Button1".
I want when i click this button to see all of my residents.
I want to see the result in DetailsView and to be able to edin, delete and add new resident.
First try with SqlDataSource so i wrote this:
<asp:SqlDataSource ID="Resident Details" runat="server" ProviderName="System.Data.SqlClient" ConnectionStrings="<%$ ConnectionStrings:ThisIsTheConnection%>"
View 57 Replies
Jun 5, 2010
First off, I am just getting started with ASP.NET so I expect this is something that I am doing.
i am trying to make a connection to a MS SQL database on my local machine.
I have the following in web.config
[code]....
View 4 Replies
Apr 19, 2010
I am trying to make a routine system(school, college) where i will use three text field as input1> Class start time(input: 8:00 AM) // when school/college will start.2> Class ending time(input: 1:00 PM) // when all of my class will finish3> Duration of class(input: 1.5(hour))// class hourdesired output: A class routine where time(hour) will be shown in row and Day(e.g, sunday,monday) will be shown in column.questions:
1> how i'll take the input as time:hour from text field?2> how i can save the calculated time in database for use in other page?
View 3 Replies
Mar 8, 2010
Could not establish a connection to the database. If you have not yet created the SQL Server database, exit the Web Site Administration tool, use the aspnet_regsql command-line utility to create and configure the database, and then return to this tool to set the provider. I have set up a db locally which mimics the production DB, THe production db and website has no has no issues.
THis used to work till i had hard disk failure and had to reinstall all software and do the db from scratch. Used the table scripts and ran the aspnet_regsql. I am using sql server express 2008 asp.net 3.5 I am using custom provider for Roles and custom membership provider for Memberships. Pretty sure the problem is in the db permissions, though I have set up Users in the Security of the DB.
[Code]....
View 7 Replies
Mar 12, 2010
I have a system set up to lock certain content in a database table so only one user can edit that content at a time. Easy enough and that part is working fine. But now I'm at a road block of how to send a request to "unlock" the content. I have the stored procedure to unlock the content, but how/where would I call it when the user just closes their browser?
View 6 Replies
Feb 11, 2010
'i'm working with visual studio 2005 asp.net c#. and i want to bind my website to my database with the "sqlConnection"
how do i get and set details from the database to the website fields with the sqlCommend and ect...
View 1 Replies
Jul 4, 2010
how to count the number of incorrect words from the answer from the website when comparing with database answer?
View 10 Replies
Jan 18, 2010
now have tried to locate and find anything about how to make a
TEXTBOX and A Button "Search"
Problem is that I have made this "bellow" and when I then enter a "value" into texbox2 and hit enter on the button it wont show me the "emnenummer" that I have requested.
im not even sure this is the correct way to do a "search"
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><asp:Button ID="Button1"
runat="server" Text="Button" />
<asp:SqlDataSource ID="SqlDataSource1" runat="server"[code]....
View 3 Replies
Mar 22, 2011
i have one urgent requirement and complete it early as possible.so, i want my "asp.net forum friends"
1.)first of all open this website: http://www.myprotein.com/.
2.) you notice 2 things here, one url is rewrite and second there are 6 flags on right side to change language.
3.) now when click on any flag, language change in url, url rewriting is working there.
4.) i have multilanguage website , i want same type of functionality on my website. i have different master pages for different countries and in global.asax be get default language of particular country.
5.) http://www.myprotein.com/uk/pages/home,http://www.myprotein.com/ie/pages/home, how i concatenate "uk" or "ie" in url, when i click on any particular flag url change?
View 8 Replies
Sep 26, 2010
<cc1:MaskedEditValidator
ID="MaskedEditValidator5"
runat="server" [code]....
View 1 Replies
Feb 2, 2010
i have this menu:
[Code]....
And in server side i get the string from the xml file.
View 2 Replies
Apr 11, 2010
in my application i should make an union query thay union 15 tables
and this query begin with 150000 rows and will grow .
i need get just 10 rows from this query
i want make this query as best as possible
2 qustion
-----------------------------------------------------------1------------------------------------------
********View1*******
select id, lang, active from table1
union
select id,lang,active from table2
...--same way to all other 15 tables
*******SP***********
select top 10 from View1 where active=1 and lang='he' order by id desc
or
********View1*******
select id, lang, active from table1 where active=1 and lang='he'
union
select id,lang,active from table2 where active=1 and lang='he'
...--same way to all other 15 tables
*******SP***********
select top 10 from View1 order by id desc
---------------------------------------------2---------------------------------------
becauseof that this query is very complicate i want to know if i need take just 10 from each table
------------------------------------------------3--------------------------------------
if there is an idea how make this query better, i will glad to know.
View 7 Replies
Jan 3, 2010
i have to make a three primary key in one table
View 2 Replies
May 7, 2015
I am trying to input some data into the database and it just won't make INSERT. Before, I am checking for duplicate entry and then I am trying to insert the data. Here is the code:
In the end I have the warning that con.Close() - unreacheable code detected.
protected void Button1_Click(object sender, EventArgs e) {
bool UserExist;
UserExist = this.UserExit();
if (UserExist == false) {
[Code] ....
View 1 Replies
Mar 18, 2010
If I m using Windows Auth in my connectionstring i.e Integrated Security = SSPI / Trusted_Connection = Yes,
Is there any way to retrieve the USERID that is being used to make connection?
View 3 Replies
Apr 17, 2010
I have 2 databases one called DB1, and the other DB2. Both of them has exactly the same design (tables, procedures and etc..)
Now, I am using SQLMETAL to create the DataContext. problem is that there are two lines that direct to a certain database and so I cannot use the same code for both databases.
here is the code:
[Code]....
Now, What I am lookin for is a programmatically way to change this two lines (DataBaseAttribute and the connrection string) .
The easiest solution for me of course is to create the class twice, with the same code and just change manually what I need which is not what I am looking for.
There is a full discussion with microsoft stuff right here: [URL]
View 4 Replies
Jun 10, 2010
I have a gridview which I connect by C# and SqldataSource. I use asp.net 2.0 - 3.5.
I want to parameterized the queries and how do I do this in the C# file ? how do I set the selectparameters in C# ?. I do not want to do this in the aspx fil.
My code in C# is:
SqlDataSourceMachineName.SelectParameters.Clear();
SqlDataSourceMachineName.SelectCommand = "Select MachineName from tblMachine inner join tblLocation on tblMachine.MachineLocationID = tblLocation.LocationID where tblLocation.LocationName = 'New York' and
tblMachine.StatusID = '1'";
View 9 Replies
Jun 24, 2010
cannot create datacontext for make a select
View 2 Replies
May 11, 2010
I have two tables which at first I made both of their primary key auto increment.I finished what needed to be done and faced an error.I realised that auto increment was not a good solution for this case so I decided to make an algorithm that will give a different key number.So I went to tables properties and removed their ID Specification (is ID) and turned it no.
View 7 Replies
Nov 9, 2010
I have the page directive:
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
CodeBehind="Galeria.aspx.cs" Inherits="TerapiaFisica.Galeria" %>
What I want is to make the Title multilanguage. I know i can do that from code behind with something like this:
protected void Page_Load(object sender, EventArgs e)
{
Page.Title = (string)GetLocalResourceObject("PageTitle");
}
But that's exactly what i don't want to do. I want to make that title multilanguage from the tag in the page directive of the aspx.
I tried this two options but none of them works:
<%@ Page Title=" <%= GetGlobalResourceObject("Global", "PageTitle") %>"
and
<%@ Page Title="<asp:Localize Text="<%$ Resources: Global, PageTitle %>"
View 2 Replies
Jun 7, 2010
I am little confused regarding the concepts of localisation and globalization.I was working on a project which was totally database driven. All the data, images and flash stuff was coming from the database. Now the site is fully loaded with the data.Now the client wants the currently running site in 5 different languages. So I read the resource files concept. Now the confusion arises. I have 2 types data on the site, one is static(ie text on labels, titles, buttons) and dynamic data that was added from the admin panel.Now my question is: If at this stage I want to make the site in 5 different languages, then I have to make the resource files for all those languages so that the static data can be displayed in different languages.But what about the dynamic data that was entered by the client. Client uploaded huge amount of data. Should I make the changes in the database tables and add 4 other columns for different languages and again upload that much data in those 4 languages.
View 3 Replies