Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. InitializeCulture()': no suitable method found to override : only problem with master page

InitializeCulture()': no suitable method found to override : only problem with master page

Scheduled Pinned Locked Moved ASP.NET
helpdesign
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    srinandan
    wrote on last edited by
    #1

    Hi All:) I am having a master page contains dropdownlist to select the language. when write the following method just below the public partial class Sign_in : System.Web.UI.MasterPage { protected override void InitializeCulture() { string culture = Request.Form["cmbCulture"]; if (string.IsNullOrEmpty(culture)) culture = "Auto"; //Use this UICulture = culture; Culture = culture; //OR This if (culture != "Auto") { System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo(culture); System.Threading.Thread.CurrentThread.CurrentCulture = ci; System.Threading.Thread.CurrentThread.CurrentUICulture = ci; } base.InitializeCulture(); } protected void Page_Load(object sender, EventArgs e) {} } following error occur only with he master page: 'Sign_in.InitializeCulture()': no suitable method found to override while same process is working in aspx page. Thanks in advance.. Regards, Sri..

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups