Changing the current region of asp.net Account

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Christian Robert Schulz

    Changing the current region of asp.net Account

    How can I change the culture/region of the machines ASPNET Account??? In
    code, I can set it for the threat manually by using
    system.threadin g.thread.curren tThread.current UICulture, but there must be a
    way to do it global on the machine: Plesk allows to change this for the
    machine which works fine, but how do I do it manually when no plesk is
    available????
  • Bob Barrows [MVP]

    #2
    Re: Changing the current region of asp.net Account

    Christian Robert Schulz wrote:[color=blue]
    > How can I change the culture/region of the machines ASPNET Account???
    > In code, I can set it for the threat manually by using
    > system.threadin g.thread.curren tThread.current UICulture, but there
    > must be a way to do it global on the machine: Plesk allows to change
    > this for the machine which works fine, but how do I do it manually
    > when no plesk is available????[/color]

    There was no way for you to know it, but this is a classic asp newsgroup.
    While you may be lucky enough to find a dotnet-knowledgeable person here who
    can answer your question, you can eliminate the luck factor by posting your
    question to a group where those dotnet-knowledgeable people hang out. I
    suggest microsoft.publi c.dotnet.framew ork.aspnet.

    This would need to be changed in the Registry, unless you can find a
    machine.config setting that controls this.

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Comment

    • Christian Robert Schulz

      #3
      Re: Changing the current region of asp.net Account

      Bob,
      must be the lucky guy since your hint brought me to the
      globalization-section within <system.web /> in the machine.config, where I
      can set culture and uiCulture for the default thread. Thank you very much!


      "Bob Barrows [MVP]" wrote:
      [color=blue]
      > Christian Robert Schulz wrote:[color=green]
      > > How can I change the culture/region of the machines ASPNET Account???
      > > In code, I can set it for the threat manually by using
      > > system.threadin g.thread.curren tThread.current UICulture, but there
      > > must be a way to do it global on the machine: Plesk allows to change
      > > this for the machine which works fine, but how do I do it manually
      > > when no plesk is available????[/color]
      >
      > There was no way for you to know it, but this is a classic asp newsgroup.
      > While you may be lucky enough to find a dotnet-knowledgeable person here who
      > can answer your question, you can eliminate the luck factor by posting your
      > question to a group where those dotnet-knowledgeable people hang out. I
      > suggest microsoft.publi c.dotnet.framew ork.aspnet.
      >
      > This would need to be changed in the Registry, unless you can find a
      > machine.config setting that controls this.
      >
      > --
      > Microsoft MVP - ASP/ASP.NET
      > Please reply to the newsgroup. This email account is my spam trap so I
      > don't check it very often. If you must reply off-line, then remove the
      > "NO SPAM"
      >
      >
      >[/color]

      Comment

      Working...