473,507 Members | 2,379 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using ASP.NET Configuration Tool Remotely?

The ASP.NET Configuration tool is great for quickly managing users in the
database on my development machine.

However, I don't see a way to use it to access the database on my Web
server. Is this possible?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

Feb 4 '08 #1
6 1554
Ask your provider if he gives u such functionality. But actually it's not

btw, your can upload config and database to the hoster via "Publish" in VS
after your made changes in your environment

--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:
The ASP.NET Configuration tool is great for quickly managing users in the
database on my development machine.

However, I don't see a way to use it to access the database on my Web
server. Is this possible?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

Feb 4 '08 #2
Thanks, but I don't understand why the ASP.NET configuration tool can't log
on remotely (which is supported by my hosting provider) and making whatever
changes it would make locally. Both are SQL Server databases. One is just
connected to remotely.

I'm not sure what you mean about uploading the config and database. I
wouldn't want to upload the database because it would overwrite the live
version. And I'm not sure what changes to the config I would be making.

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

"Michael Nemtsev" <ne*****@msn.comwrote in message
news:9E**********************************@microsof t.com...
Ask your provider if he gives u such functionality. But actually it's not

btw, your can upload config and database to the hoster via "Publish" in VS
after your made changes in your environment

--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:
>The ASP.NET Configuration tool is great for quickly managing users in the
database on my development machine.

However, I don't see a way to use it to access the database on my Web
server. Is this possible?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

Feb 4 '08 #3
It can, but the security is the major conserns of hosters.
Why to provide this to you, when you can upload all your changes via FTP?!

If you need to make changes in live DB, then download your live DB to your
local env, make changed, and upload back.

All changes in config can be easily tracked by comparing two configs :)

I understand your concerns that it's not very usable, but hosters rely more
on security rather on usability to config your site
--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:
Thanks, but I don't understand why the ASP.NET configuration tool can't log
on remotely (which is supported by my hosting provider) and making whatever
changes it would make locally. Both are SQL Server databases. One is just
connected to remotely.

I'm not sure what you mean about uploading the config and database. I
wouldn't want to upload the database because it would overwrite the live
version. And I'm not sure what changes to the config I would be making.

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

"Michael Nemtsev" <ne*****@msn.comwrote in message
news:9E**********************************@microsof t.com...
Ask your provider if he gives u such functionality. But actually it's not

btw, your can upload config and database to the hoster via "Publish" in VS
after your made changes in your environment

--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:
The ASP.NET Configuration tool is great for quickly managing users in the
database on my development machine.

However, I don't see a way to use it to access the database on my Web
server. Is this possible?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com


Feb 4 '08 #4
I can log onto my database using SQL Server Management Studio and modify the
database. I'm thinking I can do this by changing the provider settings for
the membership stuff in my config file. But I'm also thinking it might just
be easier to write a little code and uploaded.

Oh well. <g>

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

"Michael Nemtsev" <ne*****@msn.comwrote in message
news:02**********************************@microsof t.com...
It can, but the security is the major conserns of hosters.
Why to provide this to you, when you can upload all your changes via FTP?!

If you need to make changes in live DB, then download your live DB to your
local env, make changed, and upload back.

All changes in config can be easily tracked by comparing two configs :)

I understand your concerns that it's not very usable, but hosters rely
more
on security rather on usability to config your site
--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:
>Thanks, but I don't understand why the ASP.NET configuration tool can't
log
on remotely (which is supported by my hosting provider) and making
whatever
changes it would make locally. Both are SQL Server databases. One is just
connected to remotely.

I'm not sure what you mean about uploading the config and database. I
wouldn't want to upload the database because it would overwrite the live
version. And I'm not sure what changes to the config I would be making.

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

"Michael Nemtsev" <ne*****@msn.comwrote in message
news:9E**********************************@microso ft.com...
Ask your provider if he gives u such functionality. But actually it's
not

btw, your can upload config and database to the hoster via "Publish" in
VS
after your made changes in your environment

--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog: http://spaces.live.com/laflour

"Jonathan Wood" wrote:

The ASP.NET Configuration tool is great for quickly managing users in
the
database on my development machine.

However, I don't see a way to use it to access the database on my Web
server. Is this possible?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com


Feb 4 '08 #5
>Thanks, but I don't understand why the ASP.NET configuration tool can't
log
on remotely (which is supported by my hosting provider) and making
whatever
changes it would make locally. Both are SQL Server databases. One is just
connected to remotely.
It can. The config tool uses the same web.config as your web application.
Just change the web.config of your web site then start the config tool.
>I'm not sure what you mean about uploading the config and database. I
wouldn't want to upload the database because it would overwrite the live
version. And I'm not sure what changes to the config I would be making.
Change the ConnectionString pointed to by your membership default provider.

Feb 5 '08 #6
Thanks Scott, I've actually figured this out since my original post. In the
end, I found it easier to create a simple ASPX page that does what I need on
the server. But, yes, the ASP.NET Configuration tool uses the LocalSqlServer
connection string from the project's web.config file.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

"Scott Roberts" <sr******@no.spam.here-webworks-software.comwrote in
message news:uL*************@TK2MSFTNGP04.phx.gbl...
>
>>Thanks, but I don't understand why the ASP.NET configuration tool can't
log
on remotely (which is supported by my hosting provider) and making
whatever
changes it would make locally. Both are SQL Server databases. One is
just
connected to remotely.

It can. The config tool uses the same web.config as your web application.
Just change the web.config of your web site then start the config tool.
>>I'm not sure what you mean about uploading the config and database. I
wouldn't want to upload the database because it would overwrite the live
version. And I'm not sure what changes to the config I would be making.

Change the ConnectionString pointed to by your membership default
provider.
Feb 5 '08 #7

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

Similar topics

0
1444
by: Namratha Shah \(Nasha\) | last post by:
Hi All, We have almost covered all the .NET Framework Tools except a few, which we will cover in the coming days. Today we will are going to check out a tool called as mscorcfg.msc. This is a...
4
410
by: Steven Ramacher | last post by:
I am having a little issue with VS 2005. I am trying to use the ASP.NET configuration manager and have not had any success launching the application. No matter what I do I get an error message that...
2
1803
by: zahaby | last post by:
Is it applicable to use the Microsoft Enterprise Library in Logging without using the configuration tool ? I would like to configure and choose the trace listener programmatically . Thanks in...
0
1031
by: Mark | last post by:
Hi, I am new to the Microsoft Configuration Block and all I am trying to do is create a new configuration area where I can store settings much like I would do in the app.config or web.config using...
2
2245
by: gordonjones | last post by:
I'm at a real stumbling block and need to get this fixed ASAP. I've uploaded my club site files, my DB is in SQL Server on the web host (webhost4life.com)... I ran aspnet_regsql.exe against my...
1
5655
by: Davie | last post by:
I get the following error while trying to access the ASP.NET Configuration Tool. I can't see what the issue is. I believe this uses the Cassini server, but how do I check the settings for this? ...
2
1725
by: BlueJumper.com | last post by:
Can anyone help me set up the ASP.NET Configuration Tool. Ideally I'd like to make the tool point to a common server on a network. I have run the aspnet_regsql tool and got it to point to a...
1
1940
by: =?Utf-8?B?RGVubmlzIE1jQ2FydGh5?= | last post by:
I am trying to add users to the default ASP.NET membership provider (SQL Express) using the ASP.NET Configuration Tool. When I launch the ASP.NET Configuration Tool from the Web Site menu in...
3
3849
by: Robert Kochem | last post by:
Hi, I have some problems locating .NET Framework Configuration Tool for configuring an snk as fully trusted. On the PC I want to do this only the frameworks up to 3.5 were installed therefore I...
0
7223
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,...
0
7111
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...
0
7485
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5623
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,...
1
5042
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...
0
4702
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...
0
1542
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 ...
1
760
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
412
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.