Tagged Questions
The membershipuser tag has no wiki summary.
2
votes
1answer
264 views
Custom MembershipUser with only needed parameters
I am building a custom MembershipProvider more precisely the GetUser function.
Therefor i have a custom MembershipUser.
public class CustomMemberShipUser : MembershipUser
{
public ...
2
votes
2answers
947 views
InvalidCastException: Unable To Cast Objects of type [base] to type [subclass]
I have a custom CustomMembershipUser that inherits from MembershipUser.
public class ConfigMembershipUser : MembershipUser
{
// custom stuff
}
I am using Linq-to-SQL to read from a database and ...
2
votes
1answer
433 views
How to check if password answer matches what is provided by a user in ASP.Net
I simply want to know how to manually check if the value a user has provided for the answer to their security question matches their current answer on record. I want to use the build in support of ...
2
votes
2answers
169 views
MembershipUser class CreateUser password parameter
I'm using the ASP.NET Configuration for my users and their roles. I'm also using the MembershipUser class with its function CreateUser. I have it working, but was curious about something.
When I add ...
1
vote
2answers
145 views
Implementing Custom Membership user and Custom Membership Provider
References
http://msdn.microsoft.com/en-us/library/6tc47t75%28v=VS.80%29.aspx
http://msdn.microsoft.com/en-us/library/ms366730.aspx
Question
In the 2nd link precisely under heading Create a Custom ...
1
vote
1answer
53 views
Override parameterless GetUser in custom membershipprovider
Currently i'm using the following code to get my custom MembershipUser, with my custom membershipprovider:
FormsIdentity id = (FormsIdentity)User.Identity;
HtCustomUser user = (HtCustomUser) ...
1
vote
1answer
210 views
Inheriting From MembershipUser - Asp.net/C#
I have a customer class that inherits from MembershipUser.
When i load a Customer object i want to be able to set all the values in the base class easily.
I try to declare properties of Customer ...
1
vote
1answer
743 views
NonComVisibleBaseClass was detected; How do I fix this?
My class derives from System.Web.Security.MembershipUser
I am getting this error when submitting the form. The popup form uses ASPPDFand the application did not have this problem before implementing ...
1
vote
3answers
3k views
C# asp.net custom MembershipUser.createUser() method, call it from createuserwizard control
I have created custom MembershipUser, MembershipProvider and RolePrivoder classes. These all work and I am very happy with it, apart from one thing. I have an extra field in the "Users" table. I ...
0
votes
0answers
50 views
Membership Provider: getUser from Join.aspx
I am trying to capture the newly created username in the Page_Load event using the following code. The value of 'username' is null even after the user account has been created and is shows the ...
0
votes
2answers
114 views
MVC Membership Problem
Almost every time I run my MVC app, it stops with errors before getting to the home page.
UPDATE: Here's the latest code:
public class RequireLoggedIn : ActionFilterAttribute
{
public ...
0
votes
2answers
1k views
Implement Custom MembershipUser and Custom MembershipProvider
I try to implement a Custom MembershipPriver with a Custom MemberShipUser in my own database (with a specifics Users Table Model) :
This is ly diffent files :
iTwitterMembershipProvider.cs
using ...
0
votes
2answers
370 views
ASP.NET User.Identity.Name alternative?
I've created custom membership provider and it is more convenient for me to operate on MembershipUser.ProviderUserKey rather than UserName. So, to retrieve ProviderUserKey I perform such code:
if ...
0
votes
2answers
340 views
Cannot cast MembershipUser to custom class (ASP.NET)
I'm using the default SqlMembershipProvider, but I've created a custom MembershipUser class (SoeMembershipUser) because I needed a "DisplayName" property. All the DisplayName does is look at the ...
0
votes
1answer
602 views
Make a Linq-to-SQL Generated User Class Inherit from MembershipUser
I am currently building a custom Membership Provider for my Asp.net MVC website. I have an existing database with a Users table and I'm using Linq-to-Sql to automatically generates this class for me.
...
0
votes
2answers
191 views
MembershipUser constructor expects dateTime fields that might be null
The MemberShipUser constructor expects dateTime fields like lastLoginDate, which may be null in the data store.
However, when I retrieve data from the store and pass null in for the parameter, I get ...