Mobile password textbox (VB.net) : Password « Mobile Control « ASP.Net






Mobile password textbox (VB.net)

<%@ Page 
    Inherits="System.Web.UI.MobileControls.MobilePage" 
    Language="VB" 
%>
<%@ Register 
    TagPrefix="mobile" 
    Namespace="System.Web.UI.MobileControls" 
    Assembly="System.Web.Mobile" 
%>
<script runat="server" language="VB">
</script>
<mobile:form 
    id="StartForm" 
    runat="server">
<mobile:label
    runat="server"
    id="lbl1"
    text="Enter your password:"
/>
<mobile:textbox
    runat="server" 
    id="txtPassword"
    password="True"
/>
</mobile:form>
           
       








Related examples in the same category

1.Mobile password field (VB.net)