 |
| Visual Web Developer 2008 Discuss creating ASP.NET 3.5 sites with Microsoft's Visual Web Developer 2008. If your question is more specific to a piece of code than the Visual tool, see the ASP.NET 3.5 forums instead. If your question is specific to the "Express Edition" be sure to state that in your post. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Visual Web Developer 2008 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

December 12th, 2009, 09:35 PM
|
|
Authorized User
|
|
Join Date: Dec 2009
Posts: 30
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
create user and email conformation
how the thing gets done using c#
|
|

December 14th, 2009, 09:46 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
This is a rehash of your post that is found here: http://p2p.wrox.com/visual-web-developer-2008/77408-email.html Lee gave you the necessary info to accomplish this.
hth
-Doug
__________________
===============================================
Doug Parsons
Wrox online library: Wrox Books 24 x 7
Did someone here help you? Click  on their post!
"Easy is the path to wisdom for those not blinded by themselves."
===============================================
|
|

December 14th, 2009, 10:07 AM
|
|
Authorized User
|
|
Join Date: Dec 2009
Posts: 30
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
email
no................................................ .....
|
|

December 14th, 2009, 10:11 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
A little proactive searching on your part would greatly help your cause. Lee told you that your problem in the aforementioned thread could be solved with the CreateUserWizard; his link to the MSDN was a link specific to sending a confirmation email but the fact remains that the question you are asking here can be solved with the CreateUserWizard.
__________________
===============================================
Doug Parsons
Wrox online library: Wrox Books 24 x 7
Did someone here help you? Click  on their post!
"Easy is the path to wisdom for those not blinded by themselves."
===============================================
|
|

December 14th, 2009, 10:16 AM
|
|
Authorized User
|
|
Join Date: Dec 2009
Posts: 30
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
email
i am very new to c#..if possible describe how the process gets done...if there is any code with you send me that so that i have a look over it.....
|
|

December 14th, 2009, 10:22 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
__________________
===============================================
Doug Parsons
Wrox online library: Wrox Books 24 x 7
Did someone here help you? Click  on their post!
"Easy is the path to wisdom for those not blinded by themselves."
===============================================
|
|

December 14th, 2009, 09:41 PM
|
|
Authorized User
|
|
Join Date: Dec 2009
Posts: 30
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
email
i am asking you about the code...anyways thank you
|
|

December 15th, 2009, 04:23 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Quote:
|
I am asking you about the code
|
You seem to be having some strange ideas about what these forums are for. People are not here to do your work e.g. give you code, but help you when you get stuck somewhere. You got some interesting pointers (Google searches) that should help you get started. As Doug pointed out, do some proactive searching. Read the first 10 or 20 results on the Google results page, and then Google some more. Before you know it, you know more about CreateUserWizard than you might care.
By following these practices you'll become a better developer....
Imar
|
|

December 15th, 2009, 04:39 AM
|
|
Authorized User
|
|
Join Date: Dec 2009
Posts: 30
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
problem with createuser wizard
SqlParameter uname = new SqlParameter("@UserName", SqlDbType.NVarChar, 50);
uname = CreateUserWizard1.UserName;
cmd.Parameters.Add(uname);
and when i try to build my application it says that
Cannot implicitly convert type 'string' to 'System.Data.SqlClient.SqlParameter
|
|

December 15th, 2009, 07:08 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Take a look at this:
uname = CreateUserWizard1.UserName;
You'e assigning the UserName to the *entire* param object which won't work. You probably want to set its Value property instead.....
Cheers,
Imar
|
|
 |