Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hallo.
I made a website with umbraco 1.1 using my master template the following code to login:
<asp:LoginView ID="id1" runat="server"> <AnonymousTemplate> <div id="id2"> <form id="id3" method="post" runat="server"> <asp:Login ID="id4" runat="server" EnableTheming="False" DisplayRememberMe="False" PasswordLabelText="Password" UserNameLabelText="Username" TitleText="" LoginButtonText="login" width="200px"> </asp:Login> </form> </div> </AnonymousTemplate> <LoggedInTemplate> <form id="id5" method="post" runat="server"> <asp:LoginName ID="id6" runat="server" /> <asp:LoginStatus ID="id7" runat="server" /> </form> </LoggedInTemplate> </asp:LoginView>
Is it possible develope client application that login to this site? How do I?
Thanks all
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Connect to umbraco site with client
Hallo.
I made a website with umbraco 1.1 using my master template the following code to login:
<asp:LoginView ID="id1" runat="server">
<AnonymousTemplate>
<div id="id2">
<form id="id3" method="post" runat="server">
<asp:Login ID="id4" runat="server"
EnableTheming="False"
DisplayRememberMe="False"
PasswordLabelText="Password"
UserNameLabelText="Username"
TitleText=""
LoginButtonText="login"
width="200px">
</asp:Login>
</form>
</div>
</AnonymousTemplate>
<LoggedInTemplate>
<form id="id5" method="post" runat="server">
<asp:LoginName ID="id6" runat="server" />
<asp:LoginStatus ID="id7" runat="server" />
</form>
</LoggedInTemplate>
</asp:LoginView>
Is it possible develope client application that login to this site? How do I?
Thanks all
is working on a reply...