Re: error while converting upper case html tag to lower case html tag problem

  •  08-25-2007, 5:56 AM

    Re: error while converting upper case html tag to lower case html tag problem

    resolved with trick :

        System.Threading.Thread.CurrentThread.CurrentCulture = CultureInfo.GetCulture("en-US");
        System.Threading.Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCulture("tr-TR");

    for anyone faced with this problem
       
View Complete Thread