I am struggling a bit to understand the basics
I have my web.config setup right with the membership provider add name pointing to the right class, but I dont understand how just to change some of the fucntions.
I have the validate user function working now, but if I delete the createuser function, it says must be 'MustINherit', so I change it and it says cant be cant be abstract class.
I am using mysql
I import system.data, mysql.data.mysqlclient and
mysql.web.security.mysqlmembership provider
and inherits system.web.security.membershipprovider
What I hoped I would be able to do would be to change some of the fucntions in the mysql membership provider, and leave some as they were
If I delete the function createuser, does this not mean use the original createuser in the mysql membership provider ??? - I just get the error as above, mustinherit and abstract class
As you can tell I am ...
Go to the complete details ...