473,769 Members | 4,708 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Simple, unsolved issue

Hi all,

Just want to comment on this thread.

Seems like every discussion about this matter (setting up DB provider for membership) and all the samples/references given by some MVPs always refering to LOCALHOST in their solution. Aren't they all forget that people build an ASP.NET appl are plans to host their appl in an commercial hosting provider, whom most of them can't afford the fancy of dedicated servers - most of them hosts on shared hosting, like me, so they just CAN'T touch or tweak or reconfigure the IIS, or run the aspnet_regsql.e xe utility from within their Control Panel.

Anyone of you know - or even developed - of an ASP.NET 2.0 application, runs on the shared hosting, implemented .NET 2.0's built-in Authentication/authorization classes 'right-out-of-the-box' runs on the shared hosting? If so, that I might humbly (:) request your advice please.

I built one. It works perfectly. Every thing just runs smoothly, the Login control, the new-user registration form, change password, login view, role management. Set up all my roles and authorizations with that handy 'Website Administration Tool'. I'm so happy. Man, I have to admit, I save a lot of tedious works of working with that security measures in ..NET 2.0 than I was using .NET 1.1.

Then come the time to upload all those hardwork to my production server, which is a shared hosting. And I just to face the real thing that it's not working just like on my development machine.
I then posted this issue on forums like this (where MVPs and ASP.NET hotshots gathers and give their valuable advice to novices and newbies like me...), never got a definite answer that pinpoint my error or ways how to solve the problem. Funny... coz those hotshots can answers and advices some more advanced topics/problems easily. but just passed out on my questions.

Just a little bit dissapointed though, but still got my hope because of all investments I made in this 6 months on this new technology.

It's just reminds me on how easy it is to do things like these with classic ASP and with tools like Dreamweaver MX. A TRULY Drag-and-drop development tool available that even VS2005 can't beat.

Regards,
Apr 12 '06 #1
5 1278
I read your post 3 times. What is your question??

"Newbie" <ad***@batamrea lty.com> wrote in message
news:Oj******** ******@TK2MSFTN GP02.phx.gbl...
Hi all,

Just want to comment on this thread.

Seems like every discussion about this matter (setting up DB provider for
membership) and all the samples/references given by some MVPs always
refering to LOCALHOST in their solution. Aren't they all forget that people
build an ASP.NET appl are plans to host their appl in an commercial hosting
provider, whom most of them can't afford the fancy of dedicated servers -
most of them hosts on shared hosting, like me, so they just CAN'T touch or
tweak or reconfigure the IIS, or run the aspnet_regsql.e xe utility from
within their Control Panel.

Anyone of you know - or even developed - of an ASP.NET 2.0 application, runs
on the shared hosting, implemented .NET 2.0's built-in
Authentication/authorization classes 'right-out-of-the-box' runs on the
shared hosting? If so, that I might humbly (:) request your advice please.

I built one. It works perfectly. Every thing just runs smoothly, the Login
control, the new-user registration form, change password, login view, role
management. Set up all my roles and authorizations with that handy 'Website
Administration Tool'. I'm so happy. Man, I have to admit, I save a lot of
tedious works of working with that security measures in .NET 2.0 than I was
using .NET 1.1.

Then come the time to upload all those hardwork to my production server,
which is a shared hosting. And I just to face the real thing that it's not
working just like on my development machine.
I then posted this issue on forums like this (where MVPs and ASP.NET
hotshots gathers and give their valuable advice to novices and newbies like
me...), never got a definite answer that pinpoint my error or ways how to
solve the problem. Funny... coz those hotshots can answers and advices some
more advanced topics/problems easily. but just passed out on my questions.

Just a little bit dissapointed though, but still got my hope because of all
investments I made in this 6 months on this new technology.

It's just reminds me on how easy it is to do things like these with classic
ASP and with tools like Dreamweaver MX. A TRULY Drag-and-drop development
tool available that even VS2005 can't beat.

Regards,
Apr 12 '06 #2
If your question is how to get the result of ASPNET_REGSQL on a shared
hosting provider, the answer is relatively simple. Run ASPNET_REGSQL on your
own local copy of SQL Server, and export all the tables, stored procs and
views. Put them into a single SQL Script file and run it in whatever Facilty
you have with your shared hosting company - almost always, they've got
something where you can execute SQL statements. Also, be aware that there
are some classes in ASP.NET that are specifically designed to do the same
thing that the ASPNET_REGSQL utility does.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Jeff Dillon" wrote:
I read your post 3 times. What is your question??

"Newbie" <ad***@batamrea lty.com> wrote in message
news:Oj******** ******@TK2MSFTN GP02.phx.gbl...
Hi all,

Just want to comment on this thread.

Seems like every discussion about this matter (setting up DB provider for
membership) and all the samples/references given by some MVPs always
refering to LOCALHOST in their solution. Aren't they all forget that people
build an ASP.NET appl are plans to host their appl in an commercial hosting
provider, whom most of them can't afford the fancy of dedicated servers -
most of them hosts on shared hosting, like me, so they just CAN'T touch or
tweak or reconfigure the IIS, or run the aspnet_regsql.e xe utility from
within their Control Panel.

Anyone of you know - or even developed - of an ASP.NET 2.0 application, runs
on the shared hosting, implemented .NET 2.0's built-in
Authentication/authorization classes 'right-out-of-the-box' runs on the
shared hosting? If so, that I might humbly (:) request your advice please.

I built one. It works perfectly. Every thing just runs smoothly, the Login
control, the new-user registration form, change password, login view, role
management. Set up all my roles and authorizations with that handy 'Website
Administration Tool'. I'm so happy. Man, I have to admit, I save a lot of
tedious works of working with that security measures in .NET 2.0 than I was
using .NET 1.1.

Then come the time to upload all those hardwork to my production server,
which is a shared hosting. And I just to face the real thing that it's not
working just like on my development machine.
I then posted this issue on forums like this (where MVPs and ASP.NET
hotshots gathers and give their valuable advice to novices and newbies like
me...), never got a definite answer that pinpoint my error or ways how to
solve the problem. Funny... coz those hotshots can answers and advices some
more advanced topics/problems easily. but just passed out on my questions.

Just a little bit dissapointed though, but still got my hope because of all
investments I made in this 6 months on this new technology.

It's just reminds me on how easy it is to do things like these with classic
ASP and with tools like Dreamweaver MX. A TRULY Drag-and-drop development
tool available that even VS2005 can't beat.

Regards,

Apr 12 '06 #3
i was making comments, bro...

my question:
Hi all,

I'm hosted my ASP.NET 2.0 on an .NET 2.0 enabled shared hosting provider.
I tried the user registration page and it returns following error: "An error
has occurred while establishing a connection to the server".
Please click this link, just enter anything you want:
http://www.infoteknika.info/registration.aspx

The same form works perfectly on my development machine. I've checked that
the 'app_data' directory has been set/CHMOD to 777

How to solve this problem?

=============== ====

the closest answers:
It should work fine for 2000 SERVER. BTW you can also change the settings
from the IIS admin tool (setting the conn string and membership provider)
Check out my article at :

<shameless plug>
http://www.dotnetgenerics.com/Module...embership.aspx
</shameless plug>
=============== ==========
another one:

re:
If you know how to add a new provider that supports sql 2k, then you
aren't reading this.
It might be worthwhile for you to step through Scott Guthrie's tutorial that
shows you how to
configure ASP.NET to use Membership, Role Management, and Personalization
services with
SQL Server 2000 instead of SQL Express

http://weblogs.asp.net/scottgu/archi...25/423703.aspx

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/

=============== =============== =====

Regards,
Andy

"Jeff Dillon" <je********@hot mail.com> wrote in message
news:ed******** ******@TK2MSFTN GP05.phx.gbl...I read your post 3 times. What is your question??

"Newbie" <ad***@batamrea lty.com> wrote in message
news:Oj******** ******@TK2MSFTN GP02.phx.gbl...
Hi all,

Just want to comment on this thread.

Seems like every discussion about this matter (setting up DB provider for
membership) and all the samples/references given by some MVPs always
refering to LOCALHOST in their solution. Aren't they all forget that
people build an ASP.NET appl are plans to host their appl in an commercial
hosting provider, whom most of them can't afford the fancy of dedicated
servers - most of them hosts on shared hosting, like me, so they just
CAN'T touch or tweak or reconfigure the IIS, or run the aspnet_regsql.e xe
utility from within their Control Panel.

Anyone of you know - or even developed - of an ASP.NET 2.0 application,
runs on the shared hosting, implemented .NET 2.0's built-in
Authentication/authorization classes 'right-out-of-the-box' runs on the
shared hosting? If so, that I might humbly (:) request your advice please.

I built one. It works perfectly. Every thing just runs smoothly, the Login
control, the new-user registration form, change password, login view, role
management. Set up all my roles and authorizations with that handy
'Website Administration Tool'. I'm so happy. Man, I have to admit, I save
a lot of tedious works of working with that security measures in .NET 2.0
than I was using .NET 1.1.

Then come the time to upload all those hardwork to my production server,
which is a shared hosting. And I just to face the real thing that it's not
working just like on my development machine.
I then posted this issue on forums like this (where MVPs and ASP.NET
hotshots gathers and give their valuable advice to novices and newbies
like me...), never got a definite answer that pinpoint my error or ways
how to solve the problem. Funny... coz those hotshots can answers and
advices some more advanced topics/problems easily. but just passed out on
my questions.

Just a little bit dissapointed though, but still got my hope because of
all investments I made in this 6 months on this new technology.

It's just reminds me on how easy it is to do things like these with
classic ASP and with tools like Dreamweaver MX. A TRULY Drag-and-drop
development tool available that even VS2005 can't beat.

Regards,

Apr 12 '06 #4
Peter Bromberg [C# MVP] wrote:
If your question is how to get the result of ASPNET_REGSQL on a shared
hosting provider, the answer is relatively simple. Run ASPNET_REGSQL on your
own local copy of SQL Server, and export all the tables, stored procs and
views. Put them into a single SQL Script file and run it in whatever Facilty
you have with your shared hosting company - almost always, they've got
something where you can execute SQL statements. Also, be aware that there
are some classes in ASP.NET that are specifically designed to do the same
thing that the ASPNET_REGSQL utility does.
Peter


and then to 'repoint' the providers:

http://www.c-sharpcorner.com/UploadF...9-0dce96231ce6

--
Craig
Microsoft MVP - ASP/ASP.NET
Apr 12 '06 #5
Great. Generally speaking, when we make comments to a thread, we do so by
posting to that thread, not by starting a new thread. Forgive me my
transgressions!

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Newbie" wrote:
i was making comments, bro...

my question:
Hi all,

I'm hosted my ASP.NET 2.0 on an .NET 2.0 enabled shared hosting provider.
I tried the user registration page and it returns following error: "An error
has occurred while establishing a connection to the server".
Please click this link, just enter anything you want:
http://www.infoteknika.info/registration.aspx

The same form works perfectly on my development machine. I've checked that
the 'app_data' directory has been set/CHMOD to 777

How to solve this problem?

=============== ====

the closest answers:
It should work fine for 2000 SERVER. BTW you can also change the settings
from the IIS admin tool (setting the conn string and membership provider)
Check out my article at :

<shameless plug>
http://www.dotnetgenerics.com/Module...embership.aspx
</shameless plug>
=============== ==========
another one:

re:
If you know how to add a new provider that supports sql 2k, then you
aren't reading this.


It might be worthwhile for you to step through Scott Guthrie's tutorial that
shows you how to
configure ASP.NET to use Membership, Role Management, and Personalization
services with
SQL Server 2000 instead of SQL Express

http://weblogs.asp.net/scottgu/archi...25/423703.aspx

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/

=============== =============== =====

Regards,
Andy

"Jeff Dillon" <je********@hot mail.com> wrote in message
news:ed******** ******@TK2MSFTN GP05.phx.gbl...
I read your post 3 times. What is your question??

"Newbie" <ad***@batamrea lty.com> wrote in message
news:Oj******** ******@TK2MSFTN GP02.phx.gbl...
Hi all,

Just want to comment on this thread.

Seems like every discussion about this matter (setting up DB provider for
membership) and all the samples/references given by some MVPs always
refering to LOCALHOST in their solution. Aren't they all forget that
people build an ASP.NET appl are plans to host their appl in an commercial
hosting provider, whom most of them can't afford the fancy of dedicated
servers - most of them hosts on shared hosting, like me, so they just
CAN'T touch or tweak or reconfigure the IIS, or run the aspnet_regsql.e xe
utility from within their Control Panel.

Anyone of you know - or even developed - of an ASP.NET 2.0 application,
runs on the shared hosting, implemented .NET 2.0's built-in
Authentication/authorization classes 'right-out-of-the-box' runs on the
shared hosting? If so, that I might humbly (:) request your advice please.

I built one. It works perfectly. Every thing just runs smoothly, the Login
control, the new-user registration form, change password, login view, role
management. Set up all my roles and authorizations with that handy
'Website Administration Tool'. I'm so happy. Man, I have to admit, I save
a lot of tedious works of working with that security measures in .NET 2.0
than I was using .NET 1.1.

Then come the time to upload all those hardwork to my production server,
which is a shared hosting. And I just to face the real thing that it's not
working just like on my development machine.
I then posted this issue on forums like this (where MVPs and ASP.NET
hotshots gathers and give their valuable advice to novices and newbies
like me...), never got a definite answer that pinpoint my error or ways
how to solve the problem. Funny... coz those hotshots can answers and
advices some more advanced topics/problems easily. but just passed out on
my questions.

Just a little bit dissapointed though, but still got my hope because of
all investments I made in this 6 months on this new technology.

It's just reminds me on how easy it is to do things like these with
classic ASP and with tools like Dreamweaver MX. A TRULY Drag-and-drop
development tool available that even VS2005 can't beat.

Regards,


Apr 12 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2005
by: Wolfgang Rueckert | last post by:
hello everybody, i got a linker error, but i really don't know why!! i checked everything twice and more :( someone had an idea what else it could be? wolfgang --------------------Konfiguration: PyramidUp - Win32 Release--------------------
4
1983
by: Gauthier | last post by:
Hi, I've a simple issue with the use of extension objects. I'm trying to call a text formating method from an object that I add to my arguments collection, this method take an input string and output the formatted string. So far everything process correctly (the method is called without any issue) but my problem is that the output is htmlencoded, it means that my method (wich work as intended in other contexts) is called but the...
2
1489
by: Vadivel Kumar | last post by:
I have posted issues lot of times. Initially, some body will respond to that and once i replied there is no proper response after that. What is the way to let the people respond to my old, unsolved issues. Thanks & Regards Vadivel Kumar
19
2987
by: Dales | last post by:
I have a custom control that builds what we refer to as "Formlets" around some content in a page. These are basically content "wrapper" sections that are tables that have a colored header and provide an open TD with a DIV in it for the content of this formlet. (The DIV is for DHTML to hide and show the content) I've created a web page showing step by step the two problems I'm encountering. This problem is much easier to see than it...
7
2287
by: abcd | last post by:
I am trying to set up client machine and investigatging which .net components are missing to run aspx page. I have a simple aspx page which just has "hello world" printed.... When I request that page like http://machinename/dir1/hellp.aspx instead of running that page it starts downloding ...whats missing here ....why the aspx engine not running the page....
4
2074
by: darrel | last post by:
We're a two person dev team with a handful of 'testers' that help us out. I'm looking for a simple issue tracker. I don't really want a full blown help desk/bug tracking system, but rather a simple one. I'm thinking a wiki might be a good tool for this. Really, it's just a place for a few of us to jot our notes in a central location. If we have a list of bugs, it likely won't need to be anything more complex than a bulleted list of...
1
1334
by: Newbie | last post by:
Hi all, Just want to comment on this thread. Seems like every discussion about this matter (setting up DB provider for membership) and all the samples/references given by some MVPs always refering to LOCALHOST in their solution. Aren't they all forget that people build an ASP.NET appl are plans to host their appl in an commercial hosting provider, whom most of them can't afford the fancy of dedicated servers - most of them hosts on shared...
4
4388
by: Shawnk | last post by:
This post is intended to verify that true value semantics DO NOT EXIST for the Enum class (relative to boolean operations). If this is true then (thus and therefore) you can not design state machines in C# where the machine can use the enumerated 'state' to execute (thus the term 'machine' as in 'state machine') the machine operations as this requires boolean operations to be performed on the state. .....
2
4246
by: Dragan | last post by:
Hi, We're working in VS 2005, Team edition, if it makes any difference at all (should be up-to-date and all that, but could not guarantee it is 100%). We've implemented a simple generic wrapper parser under C++/CLI. It's a basic project created under Visual C++/CLR - Class Library - and it's pretty much what it is, just one /clr compiled class, fully CLR, no C++ native types or processing, nothing, just managed all the way. The reason...
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9415
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10198
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9978
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8860
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7392
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6661
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3947
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.