Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to use the password recovery control of asp.net, but with my own database, I dont want to use the membership table that is already provided. Is there a way to do this? I have searched on google but did not get a single one that is relevant to what I want to do. Please Help. Thanks
The general approach to this would be to implement your own MembershipProvider, this would allow you to override the default behaviour. However, you would need to implement all the behaviour, not just the stuff you want to change (see this example).
You can implement the GetPassword / ResetPassword methods and have them work from your own database rather than the membership table.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need to validate captcha letters are not case sensitive in asp.net. give me
some example ??? I have search but still not get any non case sensitive captcha in asp.net
Check This Link
It will serve your purpose, as it only contains lower letters and numbers.
Or
You can choose you use your own captcha where you can choose only which characters you want to use for validation
Check This Link
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make my website remember variables for each user and display them, something like local storage that I can use in c#. What is the best way to achieve this concept?
ASP.NET Session State is what you are looking for.
http://msdn.microsoft.com/en-us/library/ms972429.aspx
Or if you want permanent storage (ie they leave and come back another day)
Connecting to a SQL Server database.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to development of asp.net applications... I want to give different language options for the user to choose as he wishes.
Thanks in advance
The best way to do this is to have all the text for your site set in a language table in your database. Every piece of text. Set a unique ID for each languae, 1=English, 2=Spanish, and so on. Then, when populating the text on your page, rather than calling up the text from a static table, call it up from the Language table for that ID.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How does Wordpress store it's options? By calling for each function when it's required or other way. Is it a good practice to use session to store site options? Thanks.
Here is the options API for WordPress, the best practice to storing options would be to use the add_option() function, not using sessions as they can be temporary.
WordPress stores it's options in a table called wp_options (or whatever prefix you used during installation).
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
what kind of questions do I need to ask. Also, I don't want everyone to have the ability to create an account so how can I distinguish the people that i want to give them the ability to create an account?
In my login page i asked about username, password, email address, and a full name. also, in this case every body will have the ability to create an account. what i really want is let certain people to have ability to create an account, just certain people.
please if something not clear just ask me again or help me with it. I am new and so fresh to work by myself so any help will mean a lot to me. thanks
you can use this site http://expression.microsoft.com/en-us/cc964293.aspx and they perfectly explain how to create your login page.
Technically, you don't NEED to ask any. You could simply auto-generate a username and password combination and give it to the user.