I am using RadInput Text control version 2.0.0.0 and Im loading the control in my aspx page as follows
<%@ Page Language="C#" AutoEventWireup="false" ValidateRequest="false"%>
<%@ Register Tagprefix="radI" Namespace="Telerik.WebControls" Assembly="RadInput.Net2, Version=2.0.0.0, Culture=neutral, PublicKeyToken=a1432cd341173140" %>
<html>
<head id="Head1" runat="server">
<title >Test</title>
</head>
<body>
<form id="form1" runat="server">
<radI:RadTextBox
ID="txtNewUser2"
runat="server" TextMode ="MultiLine"
EmptyMessage="code d'accès">
</radI:RadTextBox>
</form>
</body>
</html>
This is working fine for me and the text box gets loaded fine
But when I change the TextMode of the rad textbox to "SingleLine" or "Password" I get the following error
<ınput type="text" size="15" id="txtNewUser2_text"> <ınput style="visibility: hidden; width: 0px; border: 0px;" id="txtNewUser2" name="txtNewUser2" type="text" value="" />
and a javascript object required error pops up.
What is the reason for this am I missing something here
Waiting for your reply
Akhilaa