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

Last post 08-25-2007, 5:56 AM by coffeemate. 4 replies.
Sort Posts: Previous Next
  •  09-15-2005, 3:22 PM 10641

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

    Hi,
    Cute editor looks at the language file.It converts upper cased tags into lower case by looking at the language you choose.For example <IMG tag is converted into <ımg in Turkish language which is wrong it should be<img.Any help?thx
  •  09-15-2005, 3:37 PM 10644 in reply to 10641

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

    Can you explain in more details?
     
    I visited a Turkish site. The site also uses the followin tag. It works OK.
     
    <img src="images/anadolu.gif" width="149" height="75" border="0">
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  09-15-2005, 6:08 PM 10652 in reply to 10644

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

    Thanks for your reply,
    I give you the upper and lower case letters in Turkish below:
    I(upper)-ı(lower case note that there is no dot on the lower i may be you may nt see it)I mean there are 2 i in Turkish(ı and i are 2 diferent characters)
    I mean the controoler does not look at the standart English when converting tags into lower case.
    There is no mif you write the tags lower case  like in your example.Some of our customers use upper caed tags like <IM.
    the problem is that the controller converts it into <ım (note that there is no dot on topf of i in Turkish) The correct conversion must be <im  in English like in your example
  •  08-24-2007, 2:40 AM 32826 in reply to 10652

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

    is this issue resolved? Thanks..
  •  08-25-2007, 5:56 AM 32884 in reply to 32826

    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 as RSS news feed in XML