473,386 Members | 1,699 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.

web.config

Dan
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
..........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable to
start debugging on web server. Server side error occurred on sending debug
HTTP request."

I have tried relocating the entry inside the <system.web> tags with the same
result.

What am I doing wrong? Thanks.
Nov 21 '05 #1
7 2767
This error doesn't actually have anything to do with web.config. There are
number of reasons why this could happen, but the most common I see on my
machines is that I have betas of Web Developer Express or Visual Studio.NEt
2005 on the machine. These cause the app to run as a .NET 2.0 app. *IF* this
is the case, download Denis Bauer's excellent ASP.NET version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901. Then
run it, point it at your application and switch it back into .NET 1.1
instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look at
http://support.microsoft.com/default...en-us%3B306172. This
describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you want
your application to access a local file at runtime. SInce this is a web
application, make sure that the web application user has access rights to
that file or you will find that you will next get a security violation error
thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
.........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable to
start debugging on web server. Server side error occurred on sending debug
HTTP request."

I have tried relocating the entry inside the <system.web> tags with the
same result.

What am I doing wrong? Thanks.

Nov 21 '05 #2
Dan
I don't have NET 2 on the machine. I haven't used the "file" attribute in
the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by vb
code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file, the
problem goes away.

It doesn't matter what I use as the key name or the value. If those lines
are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
This error doesn't actually have anything to do with web.config. There are
number of reasons why this could happen, but the most common I see on my
machines is that I have betas of Web Developer Express or Visual
Studio.NEt 2005 on the machine. These cause the app to run as a .NET 2.0
app. *IF* this is the case, download Denis Bauer's excellent ASP.NET
version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901. Then
run it, point it at your application and switch it back into .NET 1.1
instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look at
http://support.microsoft.com/default...en-us%3B306172. This
describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you
want your application to access a local file at runtime. SInce this is a
web application, make sure that the web application user has access rights
to that file or you will find that you will next get a security violation
error thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
.........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable to
start debugging on web server. Server side error occurred on sending
debug HTTP request."

I have tried relocating the entry inside the <system.web> tags with the
same result.

What am I doing wrong? Thanks.


Nov 21 '05 #3
Hello Dan,

You definitely provided more information in that response. You also appear
to be a bit unhappy with Pete's response. He's only trying to help.

First off, the App Settings section appears under the configuration tags,
not within the system.web child:

<configuration>
<system.web>
...
</system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</configuration>

Next, XML is case sensitive. It is not an <appsettings> section. it is an
<appSettings> section.

This is probably your problem.

For further info, this article is often useful:
http://samples.gotdotnet.com/quickst...gretrieve.aspx

Also, the reason that Pete assumed that you are accessing a file is because
the CONTENT of the config app setting that you posted was a filename. He
was hoping to help you out of the next issue you may face: the fact that
ASP.NET applications do not normally have access to file system resources.

I hope this helps,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:%2********************@TK2MSFTNGP14.phx.gbl.. .
I don't have NET 2 on the machine. I haven't used the "file" attribute in
the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by vb
code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file, the
problem goes away.

It doesn't matter what I use as the key name or the value. If those lines
are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
This error doesn't actually have anything to do with web.config. There
are number of reasons why this could happen, but the most common I see on
my machines is that I have betas of Web Developer Express or Visual
Studio.NEt 2005 on the machine. These cause the app to run as a .NET 2.0
app. *IF* this is the case, download Denis Bauer's excellent ASP.NET
version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901.
Then run it, point it at your application and switch it back into .NET
1.1 instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look at
http://support.microsoft.com/default...en-us%3B306172. This
describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you
want your application to access a local file at runtime. SInce this is a
web application, make sure that the web application user has access
rights to that file or you will find that you will next get a security
violation error thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
.........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable
to start debugging on web server. Server side error occurred on sending
debug HTTP request."

I have tried relocating the entry inside the <system.web> tags with the
same result.

What am I doing wrong? Thanks.



Nov 21 '05 #4
Dan
Sorry and thanks....
dan
---------------------------
"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.com> wrote in message
news:ks********************@comcast.com...
Hello Dan,

You definitely provided more information in that response. You also
appear to be a bit unhappy with Pete's response. He's only trying to
help.

First off, the App Settings section appears under the configuration tags,
not within the system.web child:

<configuration>
<system.web>
...
</system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</configuration>

Next, XML is case sensitive. It is not an <appsettings> section. it is
an <appSettings> section.

This is probably your problem.

For further info, this article is often useful:
http://samples.gotdotnet.com/quickst...gretrieve.aspx

Also, the reason that Pete assumed that you are accessing a file is
because the CONTENT of the config app setting that you posted was a
filename. He was hoping to help you out of the next issue you may face:
the fact that ASP.NET applications do not normally have access to file
system resources.

I hope this helps,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:%2********************@TK2MSFTNGP14.phx.gbl.. .
I don't have NET 2 on the machine. I haven't used the "file" attribute in
the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by vb
code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file,
the problem goes away.

It doesn't matter what I use as the key name or the value. If those lines
are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
This error doesn't actually have anything to do with web.config. There
are number of reasons why this could happen, but the most common I see
on my machines is that I have betas of Web Developer Express or Visual
Studio.NEt 2005 on the machine. These cause the app to run as a .NET 2.0
app. *IF* this is the case, download Denis Bauer's excellent ASP.NET
version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901.
Then run it, point it at your application and switch it back into .NET
1.1 instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look at
http://support.microsoft.com/default...en-us%3B306172. This
describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you
want your application to access a local file at runtime. SInce this is a
web application, make sure that the web application user has access
rights to that file or you will find that you will next get a security
violation error thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
.........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable
to start debugging on web server. Server side error occurred on sending
debug HTTP request."

I have tried relocating the entry inside the <system.web> tags with the
same result.

What am I doing wrong? Thanks.



Nov 21 '05 #5
Dan
Sorry to say, that solution resulted in the same error message. Here is the
code I have copies from web.config

..............
</system.web>
<appSettings>

<addkey key="connstr" value="something" />

</appSettings>
</configuration>

Any other clues would be appreciated.

Thanks, Dan

------------------------------------------------------------------------

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.com> wrote in message
news:ks********************@comcast.com...
Hello Dan,

You definitely provided more information in that response. You also
appear to be a bit unhappy with Pete's response. He's only trying to
help.

First off, the App Settings section appears under the configuration tags,
not within the system.web child:

<configuration>
<system.web>
...
</system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</configuration>

Next, XML is case sensitive. It is not an <appsettings> section. it is
an <appSettings> section.

This is probably your problem.

For further info, this article is often useful:
http://samples.gotdotnet.com/quickst...gretrieve.aspx

Also, the reason that Pete assumed that you are accessing a file is
because the CONTENT of the config app setting that you posted was a
filename. He was hoping to help you out of the next issue you may face:
the fact that ASP.NET applications do not normally have access to file
system resources.

I hope this helps,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:%2********************@TK2MSFTNGP14.phx.gbl.. .
I don't have NET 2 on the machine. I haven't used the "file" attribute in
the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by vb
code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file,
the problem goes away.

It doesn't matter what I use as the key name or the value. If those lines
are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
This error doesn't actually have anything to do with web.config. There
are number of reasons why this could happen, but the most common I see
on my machines is that I have betas of Web Developer Express or Visual
Studio.NEt 2005 on the machine. These cause the app to run as a .NET 2.0
app. *IF* this is the case, download Denis Bauer's excellent ASP.NET
version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901.
Then run it, point it at your application and switch it back into .NET
1.1 instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look at
http://support.microsoft.com/default...en-us%3B306172. This
describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you
want your application to access a local file at runtime. SInce this is a
web application, make sure that the web application user has access
rights to that file or you will find that you will next get a security
violation error thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
I am trying to add a definition for ConnString to web.config as follows
(VB.NET STD 2003)

<configuration>
<system.web>
.........
<appsettings>
<add key="ConnString" value="C:\test\test.mdb" />
</appsettings>

</system.web>
</configuration>

When I try to run it, I get "Error while trying to run project: Unable
to start debugging on web server. Server side error occurred on sending
debug HTTP request."

I have tried relocating the entry inside the <system.web> tags with the
same result.

What am I doing wrong? Thanks.



Nov 21 '05 #6
Hi Dan,

The schema for config files is set by .Net. The tags are very specific.

The tag you need is not "addkey" but rather "add"
so <addkey key="connstr" value="something" />
becomes <add key="connstr" value="something" />

HTH
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:uo**************@TK2MSFTNGP12.phx.gbl...
Sorry to say, that solution resulted in the same error message. Here is
the code I have copies from web.config

.............
</system.web>
<appSettings>

<addkey key="connstr" value="something" />

</appSettings>
</configuration>

Any other clues would be appreciated.

Thanks, Dan

------------------------------------------------------------------------

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.com> wrote in message
news:ks********************@comcast.com...
Hello Dan,

You definitely provided more information in that response. You also
appear to be a bit unhappy with Pete's response. He's only trying to
help.

First off, the App Settings section appears under the configuration tags,
not within the system.web child:

<configuration>
<system.web>
...
</system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</configuration>

Next, XML is case sensitive. It is not an <appsettings> section. it is
an <appSettings> section.

This is probably your problem.

For further info, this article is often useful:
http://samples.gotdotnet.com/quickst...gretrieve.aspx

Also, the reason that Pete assumed that you are accessing a file is
because the CONTENT of the config app setting that you posted was a
filename. He was hoping to help you out of the next issue you may face:
the fact that ASP.NET applications do not normally have access to file
system resources.

I hope this helps,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:%2********************@TK2MSFTNGP14.phx.gbl.. .
I don't have NET 2 on the machine. I haven't used the "file" attribute
in the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by vb
code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file,
the problem goes away.

It doesn't matter what I use as the key name or the value. If those
lines are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
This error doesn't actually have anything to do with web.config. There
are number of reasons why this could happen, but the most common I see
on my machines is that I have betas of Web Developer Express or Visual
Studio.NEt 2005 on the machine. These cause the app to run as a .NET
2.0 app. *IF* this is the case, download Denis Bauer's excellent
ASP.NET version switcher from
http://www.denisbauer.com/NETTools/A...er.aspx&e=9901.
Then run it, point it at your application and switch it back into .NET
1.1 instead of .NET 2.

If you aren't use a .NET 2.0 beta anywhere on the machine take a look
at http://support.microsoft.com/default...en-us%3B306172.
This describes common error messages and how to resolve them with .NET.

Finally, the settings you posted for your web.config indicate that you
want your application to access a local file at runtime. SInce this is
a web application, make sure that the web application user has access
rights to that file or you will find that you will next get a security
violation error thrown when you do resolve the problem.

Hope that helps,
--
Pete Wright
Author of ADO.NET Novice to Pro for Apress
www.petewright.org


"Dan" <da*@dsully.com> wrote in message
news:OR**************@TK2MSFTNGP09.phx.gbl...
>I am trying to add a definition for ConnString to web.config as follows
>(VB.NET STD 2003)
>
> <configuration>
> <system.web>
> .........
> <appsettings>
> <add key="ConnString" value="C:\test\test.mdb" />
> </appsettings>
>
> </system.web>
> </configuration>
>
> When I try to run it, I get "Error while trying to run project: Unable
> to start debugging on web server. Server side error occurred on
> sending debug HTTP request."
>
> I have tried relocating the entry inside the <system.web> tags with
> the same result.
>
> What am I doing wrong? Thanks.
>



Nov 21 '05 #7
Dan
That finally did it.....I'm a bit slow sometimes.

Thanks.

dan

----------------
"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.com> wrote in message
news:7u********************@comcast.com...
Hi Dan,

The schema for config files is set by .Net. The tags are very specific.

The tag you need is not "addkey" but rather "add"
so <addkey key="connstr" value="something" />
becomes <add key="connstr" value="something" />

HTH
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:uo**************@TK2MSFTNGP12.phx.gbl...
Sorry to say, that solution resulted in the same error message. Here is
the code I have copies from web.config

.............
</system.web>
<appSettings>

<addkey key="connstr" value="something" />

</appSettings>
</configuration>

Any other clues would be appreciated.

Thanks, Dan

------------------------------------------------------------------------

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.com> wrote in message
news:ks********************@comcast.com...
Hello Dan,

You definitely provided more information in that response. You also
appear to be a bit unhappy with Pete's response. He's only trying to
help.

First off, the App Settings section appears under the configuration
tags, not within the system.web child:

<configuration>
<system.web>
...
</system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</configuration>

Next, XML is case sensitive. It is not an <appsettings> section. it is
an <appSettings> section.

This is probably your problem.

For further info, this article is often useful:
http://samples.gotdotnet.com/quickst...gretrieve.aspx

Also, the reason that Pete assumed that you are accessing a file is
because the CONTENT of the config app setting that you posted was a
filename. He was hoping to help you out of the next issue you may face:
the fact that ASP.NET applications do not normally have access to file
system resources.

I hope this helps,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dan" <da*@dsully.com> wrote in message
news:%2********************@TK2MSFTNGP14.phx.gbl.. .
I don't have NET 2 on the machine. I haven't used the "file" attribute
in the appsettings code so why would it think that I am referring to an
external file? The error comes up before the appsetting is accessed by
vb code. when I try to debug start---There are no compile errors.

The KB article says that this error arises from a syntax error in the
web.config file. If I remove the three lines from the web.config file,
the problem goes away.

It doesn't matter what I use as the key name or the value. If those
lines are present the rror is tripped.

"Pete Wright" <pe**********@gmail.com> wrote in message
news:e4**************@tk2msftngp13.phx.gbl...
> This error doesn't actually have anything to do with web.config. There
> are number of reasons why this could happen, but the most common I see
> on my machines is that I have betas of Web Developer Express or Visual
> Studio.NEt 2005 on the machine. These cause the app to run as a .NET
> 2.0 app. *IF* this is the case, download Denis Bauer's excellent
> ASP.NET version switcher from
> http://www.denisbauer.com/NETTools/A...er.aspx&e=9901.
> Then run it, point it at your application and switch it back into .NET
> 1.1 instead of .NET 2.
>
> If you aren't use a .NET 2.0 beta anywhere on the machine take a look
> at http://support.microsoft.com/default...en-us%3B306172.
> This describes common error messages and how to resolve them with
> .NET.
>
> Finally, the settings you posted for your web.config indicate that you
> want your application to access a local file at runtime. SInce this is
> a web application, make sure that the web application user has access
> rights to that file or you will find that you will next get a security
> violation error thrown when you do resolve the problem.
>
> Hope that helps,
>
>
> --
> Pete Wright
> Author of ADO.NET Novice to Pro for Apress
> www.petewright.org
>
>
>
>
> "Dan" <da*@dsully.com> wrote in message
> news:OR**************@TK2MSFTNGP09.phx.gbl...
>>I am trying to add a definition for ConnString to web.config as
>>follows (VB.NET STD 2003)
>>
>> <configuration>
>> <system.web>
>> .........
>> <appsettings>
>> <add key="ConnString" value="C:\test\test.mdb" />
>> </appsettings>
>>
>> </system.web>
>> </configuration>
>>
>> When I try to run it, I get "Error while trying to run project:
>> Unable to start debugging on web server. Server side error occurred
>> on sending debug HTTP request."
>>
>> I have tried relocating the entry inside the <system.web> tags with
>> the same result.
>>
>> What am I doing wrong? Thanks.
>>
>
>



Nov 21 '05 #8

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

Similar topics

13
by: Maxim Khesin | last post by:
I want to have a config file with my python proggie, satisfying the following requirements: 1) support key->(value, default) 2) simple and intuitive to read and edit 3) easyly readable into a...
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*...
3
by: Richard Lewis Haggard | last post by:
I have a test application that is calling an assembly that reads some strings out of a config file. Normally, this assembly supports a web application and the information can be read just fine....
13
by: Khodr | last post by:
Hello, I am using VS.NET 2003 and vb. I build my application MyApp and it generates MyApp.exe.config. So now MyApp.exe reads parameters from MyApp.exe.config. Great and no problem! I need to...
20
by: tomerfiliba | last post by:
hey i've been seeing lots of config-file-readers for python. be it ConfigObj (http://www.voidspace.org.uk/python/configobj.html) or the like. seems like a trend to me. i came to this conclusion...
11
by: TARUN | last post by:
Hello All I need to ask about the configuration file in .NET, There are Two config File 1. Web Config 2. Machine config I understand the the usage of Web config , but not able to understand...
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...
5
by: mmcd79 | last post by:
I built a VB.net application that makes use of a machine level DB connection string setting, and a user level starting location setting. The machine level setting and the default user based...
10
by: eagle | last post by:
I have a web.config in my application that contains the connection strings to all my datasources. I want to move these connection strings to another web config up the folder hierarchy so that all...
5
by: =?Utf-8?B?SmVycnkgQw==?= | last post by:
I have a app that uses several membership/role providers. I can list these Providers with the code: Dim rootWebConfig1 As Configuration rootWebConfig1 =...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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.