[Mono-bugs] [Bug 76018][Wis] New - asp:Button doesn't render correctly (&acute)

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Fri Sep 9 01:35:02 EDT 2005


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by mario at monouml.org.

http://bugzilla.ximian.com/show_bug.cgi?id=76018

--- shadow/76018	2005-09-09 01:35:02.000000000 -0400
+++ shadow/76018.tmp.30932	2005-09-09 01:35:02.000000000 -0400
@@ -0,0 +1,119 @@
+Bug#: 76018
+Product: Mono: Tools
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: XSP
+AssignedTo: gonzalo at ximian.com                            
+ReportedBy: mario at monouml.org               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: asp:Button doesn't render correctly (&acute)
+
+Description of Problem:
+When using &acuted characters the rendering isn't displayed correctly.
+
+Steps to reproduce the problem:
+1. Run index.aspx with xsp
+
+Actual Results:
+You will see two asp:Button with weird characters:
+"Olvide mi contrase<weird-char>a" html code: "Olvide mi contrase&ntilde;a"
+"Iniciar sesi<weird-char>n" html code: "Iniciar sesi&oacute;n"
+
+Expected Results:
+"Olvide mi contraseña" html code: "Olvide mi contrase&ntilde;a"
+"Iniciar sesión" html code: "Iniciar sesi&oacute;n"
+
+How often does this happen? 
+- Always
+
+Additional Information:
+- I tested this sample with Mozilla Firefox 1.0.6, Epiphany 1.0.8 in Ubuntu
+Linux and MS Internet Explorer 6 and Mozilla Firefox 1.0.6, in all browsers
+the error was the same. This also happends in the XSP's MS Windows version.
+
+// index.aspx - sample page
+<%@ Page language="C#" ResponseEncoding="UTF-8"%>
+<html>
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+	</head>
+   <body>
+<form id="_loginForm" method="post" runat="server" name="_loginForm"
+enctype="application/x-www-form-urlencoded" action="index.aspx">
+
+	<div class="loginTable">
+
+		<asp:Label id="username" runat="server"
+CssClass="aligmentLeft">N&uacute;mero de Control:</asp:Label>
+
+		<asp:TextBox id="_username" runat="server"
+CssClass="aligmentRight"></asp:TextBox><br>
+
+		<asp:Label id="password" runat="server"
+CssClass="aligmentLeft">Contrase&ntilde;a:</asp:Label>
+
+		<asp:TextBox id="_password" runat="server" CssClass="aligmentRight"
+TextMode="Password"></asp:TextBox><br>
+
+		<div class="buttonsRow">
+
+			<asp:Button id="_forgot" runat="server" Text="Olvide mi
+contrase&ntilde;a" CssClass="buttonElements"></asp:Button>
+
+			<asp:Button id="_login" runat="server" Text="Iniciar sesi&oacute;n"
+CssClass="buttonElements"></asp:Button>
+
+		</div>
+
+	</div>
+
+	<br>
+
+	<div class="loginTable">
+
+		<asp:Label id="message" runat="server" CssClass="tableRow">
+
+		Si usted no recuerda su N&uacute;mero de Control apriete el siguiente
+bot&oacute;n para buscar
+
+		su informaci&oacute;n.</asp:Label><br>
+
+		<div class="buttonsRow">
+
+			<asp:Button id="_search" runat="server" Text="Buscar datos de Egreso"
+CssClass="buttonElements"></asp:Button>
+
+		</div>
+
+	</div>
+
+	<br>
+	<div class="loginTable">
+
+		<asp:Label id="Label1" runat="server" CssClass="tableRow">
+
+		Si usted acaba de egresar o su N&uacute;mero de Control no existe en la
+base de datos apriete el
+
+		siguiente bot&oacute;n para darse de alta al sistema.</asp:Label><br>
+
+		<div class="buttonsRow">
+
+			<asp:Button id="_signup" runat="server" Text="Registrar datos"
+CssClass="buttonElements"></asp:Button>
+
+		</div>
+
+	</div>
+
+</form>
+   </body>
+</html>


More information about the mono-bugs mailing list