紧急求助,关于软键盘问题
我登陆页面的密码输入区源码是这样的<tr style="color: #000000; font-family: Times New Roman">
<td style="width: 461px; height: 25px" align ="right">
<font face="宋体"> 密码:</font></td>
<td style="width: 629px; height: 25px" align="left">
<asp:TextBox ID="txUserPwd" runat="server" TextMode="Password" Width="165px" ValidationGroup="G1"></asp:TextBox>
<span style="font-family: 宋体"></span>
<asp:RequiredFieldValidator ID="RFVtxUserPwd" runat="server" ControlToValidate="txUserPwd"
ErrorMessage="不能为空" ValidationGroup="G1"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td colspan="2" style="height: 15px">
<font face="宋体">
</font>
</td>
</tr>
<tr>
<td align="center" colspan="2" style="height: 25px">
<font face="宋体">
<asp:Label ID="MessageLab" runat="server" ForeColor="Red" Width="316px"></asp:Label></font></td>
</tr>
<tr>
<td align="center" colspan="2" style="height: 25px">
<asp:Button ID="tbEnter" runat="server" OnClick="tbEnter_Click" Text="登录" ValidationGroup="G1" />
<asp:Button ID="tbCancel" runat="server" OnClick="tbCancel_Click" Text="取消" />
<asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl="~//Register.aspx">申请帐号</asp:HyperLink></td>
</tr>
我想做一个软键盘输入的效果。在网上找了半天找到一个JSP的文件,可我不太会用,做出来以后点软键盘没有反应,那位大哥能教教我这个
<script>
//定义当前需用软键盘的表单和控件的名称
var curEditName
curEditName="FrontPage_Form1.password"
</script>
<script src="softkeyboard.js" language="JavaScript"></script>
<form method="POST" action="#" onsubmit="return FrontPage_Form1_Validator(this)" name="FrontPage_Form1">
<input type="password" name="password" size="14" noWrap>
<a onclick="showkeyboard(curEditName)" style={cursor:hand;}>使用软键盘</a>
</form>
应该放在什么位置,另外我把,JSP文件也贴出来,看看有没有问题
http://topic.csdn.net/t/20050323/16/3875042.html
--------------------编程问答-------------------- 太乱了
帮你顶了 --------------------编程问答-------------------- 我也没看你的代码. 软键盘 你找下"建行密码输入器" 试试.以前收集的,不知道放那了... --------------------编程问答-------------------- 找过了,不过貌似还是不行
补充:.NET技术 , ASP.NET