Click here to Skip to main content
15,896,606 members
Articles / Web Development / ASP.NET

Creating Multilingual Websites - Part 3

Rate me:
Please Sign up or sign in to vote.
4.76/5 (24 votes)
1 Nov 200513 min read 220.7K   3K   173  
Extend the existing globalization capabilities of .NET to create flexible and powerful multilgual web sites. This third part won't focus on the fundamental but rather enhancements to what we've already covered.
using System;
using System.Web.UI;
using Localization;

namespace LocalizedSample
{
  /// <summary>
  /// Summary description for index.
  /// </summary>
  public class index : Page
  {
    protected LocalizedLabel seeBinding;
    protected LocalizedButton login;

    private void Page_Load(object sender, EventArgs e)
    {
      //Register the values which will be available to the client-side resource manager
      //make sure to include the necessary JavaScript on your page (see index.aspx)
      ResourceManager.RegisterLocaleResource("EnteredUsername", "EnteredPassword");

      login.Attributes.Add("onClick", "return LoginClicked();");
      seeBinding.Controls.Add(new Parameter("url", "BindingSample.aspx"));
    }

    #region Web Form Designer generated code
    protected override void OnInit(EventArgs e)
    {
      //
      // CODEGEN: This call is required by the ASP.NET Web Form Designer.
      //
      InitializeComponent();
      base.OnInit(e);
    }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.login.Click += new System.EventHandler(this.login_Click);
      this.Load += new System.EventHandler(this.Page_Load);

    }
    #endregion

    private void login_Click(object sender, EventArgs e)
    {
      Page.Validate();
      if (Page.IsValid)
      {
      }
    }
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions