Adding a form to a template?
Hi there,
I'd like to add a small login form to the top of my Sitefinity site that will send a POST to a separate site to login there. This would normally be done using HTML similar to this:
<
form
method
=
"post"
action
=
"http://www.example.com/login"
>
<
input
type
=
"text"
name
=
"username"
>
<
input
type
=
"password"
name
=
"password"
>
<
input
type
=
"submit"
value
=
"Login"
>
</
form
>
Hello,
You can always use the "PostBackUrl" property in an asp.net submit button to force your form to post to an external location. Is this an option for you?
Regards,
Bonny
Telerik