473,386 Members | 1,754 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

user.config files available in asp.net?

TS
i want to use these but think they may be only windows forms
Jun 27 '08 #1
4 2103
No, they are not.
Any configuration settings for asp.net apps should be placed in web.config.

There's options for using configuration settings in files external to web.config.

For an example, see :
http://forums.asp.net/p/945196/1141186.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"TS" <ma**********@nospam.nospamwrote in message news:OZ**************@TK2MSFTNGP06.phx.gbl...
>i want to use these but think they may be only windows forms

Jun 27 '08 #2
Hi TS,

As Juan has suggested, in ASP.NET web.config file is the only configuration
storage and there is no user.config like winform application(because
ASP.NET application runs at server-side and doesn't directly access on
client user's machine). Is there any particular requirement in your
appliation that need such a user.config file? In ASP.NET application(from
2.0), if you want to store some per user specific data, you can consider
using the "profile" properties:

#Defining ASP.NET Profile Properties
http://msdn.microsoft.com/en-us/library/d8b58y5d.aspx

#Profiles In ASP.NET 2.0
http://www.odetocode.com/articles/440.aspx

Profile service can use different kind of persistent storage(by default use
SQL express database) to store data for each authenticated or anonymous
user.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "TS" <ma**********@nospam.nospam>
Subject: user.config files available in asp.net?
Date: Wed, 28 May 2008 12:24:16 -0500
>
i want to use these but think they may be only windows forms
Jun 27 '08 #3
TS
thanks, just wondering

"Steven Cheng [MSFT]" <st*****@online.microsoft.comwrote in message
news:WZ**************@TK2MSFTNGHUB02.phx.gbl...
Hi TS,

As Juan has suggested, in ASP.NET web.config file is the only
configuration
storage and there is no user.config like winform application(because
ASP.NET application runs at server-side and doesn't directly access on
client user's machine). Is there any particular requirement in your
appliation that need such a user.config file? In ASP.NET application(from
2.0), if you want to store some per user specific data, you can consider
using the "profile" properties:

#Defining ASP.NET Profile Properties
http://msdn.microsoft.com/en-us/library/d8b58y5d.aspx

#Profiles In ASP.NET 2.0
http://www.odetocode.com/articles/440.aspx

Profile service can use different kind of persistent storage(by default
use
SQL express database) to store data for each authenticated or anonymous
user.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>From: "TS" <ma**********@nospam.nospam>
Subject: user.config files available in asp.net?
Date: Wed, 28 May 2008 12:24:16 -0500
>>
i want to use these but think they may be only windows forms

Jun 27 '08 #4
If you have any further questions, welcome to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "TS" <ma**********@nospam.nospam>
References: <OZ**************@TK2MSFTNGP06.phx.gbl>
<WZ**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: Re: user.config files available in asp.net?
Date: Thu, 29 May 2008 08:46:31 -0500
>
thanks, just wondering

"Steven Cheng [MSFT]" <st*****@online.microsoft.comwrote in message
news:WZ**************@TK2MSFTNGHUB02.phx.gbl...
>Hi TS,

As Juan has suggested, in ASP.NET web.config file is the only
configuration
storage and there is no user.config like winform application(because
ASP.NET application runs at server-side and doesn't directly access on
client user's machine). Is there any particular requirement in your
appliation that need such a user.config file? In ASP.NET
application(from
>2.0), if you want to store some per user specific data, you can consider
using the "profile" properties:

#Defining ASP.NET Profile Properties
http://msdn.microsoft.com/en-us/library/d8b58y5d.aspx

#Profiles In ASP.NET 2.0
http://www.odetocode.com/articles/440.aspx

Profile service can use different kind of persistent storage(by default
use
SQL express database) to store data for each authenticated or anonymous
user.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Jun 27 '08 #5

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

Similar topics

4
by: Fuzzyman | last post by:
There have been a couple of config file 'systems' announced recently, that focus on building more powerful and complex configuration files. ConfigObj is a module to enable you to much more *simply*...
0
by: Per Bergland | last post by:
After many woes, I finally managed to get a stack dump of my System Service (written in C#) that insists on crashing when launched at system boot time (see below on how to get this dump - I...
4
by: Jon Maz | last post by:
Hi All, I'm getting to grips with PHP and Apache (on Windows for current development, production site will be on Linux), and have a simple (I hope!) request. When you change the httpd.conf...
12
by: Mark Broadbent | last post by:
Hi guys, just going through remoting at the moment and a couple of questions relating to .net in general has surfaced. Firstly I have seen in the designer that for the namespace and many of its...
7
by: jsale | last post by:
I'm currently using ASP.NET with VS2003 and SQL Server 2003. The ASP.NET app i have made is running on IIS v6 and consists of a number of pages that allow the user to read information from the...
8
by: Graham | last post by:
I noticed a similar post awhile ago and in terms of my problem it wasnt a suitable answer so I will ask again. I have VS2005 running a on development machine in my office where I do all my...
12
by: dbuchanan | last post by:
Hello, (Is this the proper newsgroup?) === Background === I am building a solution with two projects. One project is my data access layer which contains my DataSet as an xsd file. The XSD...
2
by: cmay | last post by:
I have an asp.net application at the root, and other applications suchs as /WebApp1, /WebApp2. By design, these web applications inherit the root application's web.config file. But, when you...
21
by: Nick Craig-Wood | last post by:
Lance Gamet <lance@gamet.comwrote: I've found http://docs.python.org/lib/module-ConfigParser.html To be easy to use and built in. It makes human readable / editable ..ini - like files. ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
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
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,...

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.