I am ready to change 1and1.com as my provider. I am not geting the support I need to succesfully publish the personal web kit that comes with Visual web developper.
Can some who succefully publish that personal web kit share with me his ISP and step by step the changes he did on the web.config file if any.
What problems are you having?, the main issue that I have helped people with before on 1and1 is the fact that you can not use remote connections to ms sql.
So you have to setup the database using there admin tool and .sql files.
If you need more info about the sql on 1and1 take a read of the few tips here
For a good host take a look at discountasp.net great company and great service.
Hope the offer helps
Regards
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
1) You can make the change using the online sql tools (open database and change the value) Not so good.
2) Download a simple admin page lots around
3) Make one
this page will show you who is in the database
<%@ Page Language="VB" %>
<script runat="server"> Public Sub Page_Load() Dim user As MembershipUser
' Get the currently logged on user and
' update the user's on-line timestamp user = Membership.GetUser(True)
UserName.Text = user.Username End Sub
</script>
<html>
<body style="FONT-FAMILY: Verdana">
<H1>Get User</H1>
<hr />
<form runat="server">
The currently logged on user is:
<asp:literal id="UserName" runat="server" />
</form>
</body>
</html>
then you need a simple page to change the IsApproved the code here
Dim userInfo As MembershipUser = Membership.GetUser(“UserName”)
userInfo.IsApproved = True
Membership.UpdateUser(userInfo)
End Sub
Hope that ok for you, if not let me know and i will come up with a better demo tomorrow for you.
Regards
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
I think I'm having the same issues as you were when trying to set up the Personal Web kit with 1and1. I followed the directions as described in the post
http://forums.asp.net/t/1110595.aspx but I ran into a snag when attempting to run the .bat file from the Query analyser tool. I'm getting the following error message: Error
-2147217900 - Incorrect syntax near 'S'. Did you have this problem?
I am not sure of the exact step you are at but if its the making of the database create step using aspnet_regsql.exe then this .bat file is only to make it easy to rerun the commands on the local machine. You then use the .sql file you make to import into
the 1and1 query tool.
Hope that helps you if not let me know
Regards
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
Member
1 Points
7 Posts
Which Provider do you use to succefully publish the Personal Web KIT?
Nov 17, 2007 11:28 PM|ftest|LINK
I am ready to change 1and1.com as my provider. I am not geting the support I need to succesfully publish the personal web kit that comes with Visual web developper.
Can some who succefully publish that personal web kit share with me his ISP and step by step the changes he did on the web.config file if any.
Cheers
Ftest
Contributor
5190 Points
1469 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 19, 2007 11:59 AM|jeremyh|LINK
What problems are you having?, the main issue that I have helped people with before on 1and1 is the fact that you can not use remote connections to ms sql.
So you have to setup the database using there admin tool and .sql files.
If you need more info about the sql on 1and1 take a read of the few tips here
http://faq.1and1.com/scripting_languages_supported/ms_sql_server_database/index.html
Also lots of info in this post wrong starter kit but still very helpful http://forums.asp.net/t/1110595.aspx
Let me know and I will be happy to help you.
For a good host take a look at discountasp.net great company and great service.
Hope the offer helps
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
Member
1 Points
7 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 21, 2007 02:49 PM|ftest|LINK
Jeremyh,
Million Thanks,
That work.
Now how can I approve the user once he register?
Cheers.
ftest
Contributor
5190 Points
1469 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 21, 2007 05:41 PM|jeremyh|LINK
Great that you got it working.
Well you have a few options
1) You can make the change using the online sql tools (open database and change the value) Not so good.
2) Download a simple admin page lots around
3) Make one
this page will show you who is in the database
<%@ Page Language="VB" %>
<script runat="server">
Public Sub Page_Load()
Dim user As MembershipUser ' Get the currently logged on user and
' update the user's on-line timestamp
user = Membership.GetUser(True)
UserName.Text = user.Username
End Sub
</script>
<html>
<body style="FONT-FAMILY: Verdana">
<H1>Get User</H1>
<hr />
<form runat="server">
The currently logged on user is:
<asp:literal id="UserName" runat="server" />
</form>
</body>
</html>
then you need a simple page to change the IsApproved the code here
Hope that ok for you, if not let me know and i will come up with a better demo tomorrow for you.Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
None
0 Points
3 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 28, 2007 09:26 PM|mzwetk|LINK
Hi ftest,
I think I'm having the same issues as you were when trying to set up the Personal Web kit with 1and1. I followed the directions as described in the post http://forums.asp.net/t/1110595.aspx but I ran into a snag when attempting to run the .bat file from the Query analyser tool. I'm getting the following error message:
Error
-2147217900 - Incorrect syntax near 'S'. Did you have this problem?
Thanks,
Mike
Contributor
5190 Points
1469 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 29, 2007 04:27 AM|jeremyh|LINK
Hi Mike,
I am not sure of the exact step you are at but if its the making of the database create step using aspnet_regsql.exe then this .bat file is only to make it easy to rerun the commands on the local machine. You then use the .sql file you make to import into the 1and1 query tool.
Hope that helps you if not let me know
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
None
0 Points
3 Posts
Re: Which Provider do you use to succefully publish the Personal Web KIT?
Nov 29, 2007 10:13 AM|mzwetk|LINK
Hi Jeremyh,
Thanks for help, I got it to work.
Mike