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
I am working with the 4.11.x with uBlogsy 2.1.1.2 and would like to auto fill the txtName and txtEmail with member info.
Is there a setting for it?
I am using the asp.net controls.
THANKS
There's no setting for that.
What you could do is write that data to hidden fields in the page using your own code... then use jquery to auto-fill the form fields from your hidden fields.
Thanks for quick anwser. I have made a clumsy ninja trick:
<script> <%@ Import Namespace="System.Web.Security" %> <% MembershipUser user = Membership.GetUser(HttpContext.Current.User.Identity.Name);%> <% if (user != null){string _emailAddress = user.Email; string currentUsername = "test"; txtName.Text = user.UserName; txtEmail.Text = _emailAddress;} %> </script>
Nice!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
comment with members info
I am working with the 4.11.x with uBlogsy 2.1.1.2 and would like to auto fill the txtName and txtEmail with member info.
Is there a setting for it?
I am using the asp.net controls.
THANKS
There's no setting for that.
What you could do is write that data to hidden fields in the page using your own code... then use jquery to auto-fill the form fields from your hidden fields.
Thanks for quick anwser. I have made a clumsy ninja trick:
Nice!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.