473,394 Members | 1,854 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,394 software developers and data experts.

Using XML to store global variables in memory

now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would I
use to load the entries from the xml file into memory and make them quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx
Nov 18 '05 #1
17 2422
XmlDocument class and its methods (like Load and LoadXML). On the other hand
I am not sure why Xml? XML is a lot of things, all of them great, but it is
hardly the best way to keep a bunch of variables. You would be better off
creating a class, making your variables members(properties) of this class and
attaching your calss to either Session or Application. I also usually declare
a static member on the class with the string id which is used to access the
object of the class from the application collection. This way you are fully
proteced from typos in you string ids

HTH, Michael

"DavÃ*ð Þórisson" wrote:
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would I
use to load the entries from the xml file into memory and make them quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx

Nov 18 '05 #2
Thx Michael,
well you see I have several webs on the same application (using the same
core but different layouts and urls) so that the variables vary according to
which web it is. I want to be able to quickly access the web specific
variables eg
string Title = Web1.Title ...

instead of having several titles eg
string TitleForWeb1
string TitleForWeb2 ...

thats the idea!

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:9D**********************************@microsof t.com...
XmlDocument class and its methods (like Load and LoadXML). On the other
hand
I am not sure why Xml? XML is a lot of things, all of them great, but it
is
hardly the best way to keep a bunch of variables. You would be better off
creating a class, making your variables members(properties) of this class
and
attaching your calss to either Session or Application. I also usually
declare
a static member on the class with the string id which is used to access
the
object of the class from the application collection. This way you are
fully
proteced from typos in you string ids

HTH, Michael

"Davíð Þórisson" wrote:
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would
I
use to load the entries from the xml file into memory and make them
quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx

Nov 18 '05 #3
well, with xml you will have to write something like
MyXmlDoc["Web1"].Attributes["Title"].Value
assuming that MyXmlDoc is your document looks something like
<root><Web1 Title="...."/><Web2 Title="..."/></root>
A lot of coding to what end? still you can mistype atribute name or node
name and the compiler will not tell you a thing
on the other hand with the class - you can define methods
like getTitle, which would take the web name as a parameter, and even throw
an exception to notify you that the web name is incorrect

"DavÃ*ð Þórisson" wrote:
Thx Michael,
well you see I have several webs on the same application (using the same
core but different layouts and urls) so that the variables vary according to
which web it is. I want to be able to quickly access the web specific
variables eg
string Title = Web1.Title ...

instead of having several titles eg
string TitleForWeb1
string TitleForWeb2 ...

thats the idea!

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:9D**********************************@microsof t.com...
XmlDocument class and its methods (like Load and LoadXML). On the other
hand
I am not sure why Xml? XML is a lot of things, all of them great, but it
is
hardly the best way to keep a bunch of variables. You would be better off
creating a class, making your variables members(properties) of this class
and
attaching your calss to either Session or Application. I also usually
declare
a static member on the class with the string id which is used to access
the
object of the class from the application collection. This way you are
fully
proteced from typos in you string ids

HTH, Michael

"DavÃ*ð Þórisson" wrote:
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would
I
use to load the entries from the xml file into memory and make them
quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx


Nov 18 '05 #4
good point Michael, I just cannot grasp the concept of using a Class (=code)
for storing data (normally stored as strings, dbase entries or as in my ASP
example as variables in a text file then evaled())...
I will keep your idea in mind, has some interesting aspects to look into

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:26**********************************@microsof t.com...
well, with xml you will have to write something like
MyXmlDoc["Web1"].Attributes["Title"].Value
assuming that MyXmlDoc is your document looks something like
<root><Web1 Title="...."/><Web2 Title="..."/></root>
A lot of coding to what end? still you can mistype atribute name or node
name and the compiler will not tell you a thing
on the other hand with the class - you can define methods
like getTitle, which would take the web name as a parameter, and even
throw
an exception to notify you that the web name is incorrect

"Davíð Þórisson" wrote:
Thx Michael,
well you see I have several webs on the same application (using the same
core but different layouts and urls) so that the variables vary according
to
which web it is. I want to be able to quickly access the web specific
variables eg
string Title = Web1.Title ...

instead of having several titles eg
string TitleForWeb1
string TitleForWeb2 ...

thats the idea!

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:9D**********************************@microsof t.com...
> XmlDocument class and its methods (like Load and LoadXML). On the other
> hand
> I am not sure why Xml? XML is a lot of things, all of them great, but
> it
> is
> hardly the best way to keep a bunch of variables. You would be better
> off
> creating a class, making your variables members(properties) of this
> class
> and
> attaching your calss to either Session or Application. I also usually
> declare
> a static member on the class with the string id which is used to access
> the
> object of the class from the application collection. This way you are
> fully
> proteced from typos in you string ids
>
> HTH, Michael
>
> "Davíð Þórisson" wrote:
>
>> now in my web I have some global variables to be used in many
>> different
>> subpages, in the old ASP I simply loaded a variables.asp file into
>> memory
>> using the eval() function. Now I'd like to use XML but what method
>> would
>> I
>> use to load the entries from the xml file into memory and make them
>> quickly
>> accessible globally in the web code? Just need to know what functions
>> specifically I should start reading about!
>>
>> Thx
>>
>>
>>


Nov 18 '05 #5
Michael, since I'm not so experienced in .Net, how would you construct such
a class so that you can access the variables eg
string title = Web1.Title;

?
"Davíð Þórisson" <db**@hi.is> wrote in message
news:eV**************@TK2MSFTNGP12.phx.gbl...
good point Michael, I just cannot grasp the concept of using a Class
(=code) for storing data (normally stored as strings, dbase entries or as
in my ASP example as variables in a text file then evaled())...
I will keep your idea in mind, has some interesting aspects to look into

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:26**********************************@microsof t.com...
well, with xml you will have to write something like
MyXmlDoc["Web1"].Attributes["Title"].Value
assuming that MyXmlDoc is your document looks something like
<root><Web1 Title="...."/><Web2 Title="..."/></root>
A lot of coding to what end? still you can mistype atribute name or node
name and the compiler will not tell you a thing
on the other hand with the class - you can define methods
like getTitle, which would take the web name as a parameter, and even
throw
an exception to notify you that the web name is incorrect

"Davíð Þórisson" wrote:
Thx Michael,
well you see I have several webs on the same application (using the same
core but different layouts and urls) so that the variables vary
according to
which web it is. I want to be able to quickly access the web specific
variables eg
string Title = Web1.Title ...

instead of having several titles eg
string TitleForWeb1
string TitleForWeb2 ...

thats the idea!

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:9D**********************************@microsof t.com...
> XmlDocument class and its methods (like Load and LoadXML). On the
> other
> hand
> I am not sure why Xml? XML is a lot of things, all of them great, but
> it
> is
> hardly the best way to keep a bunch of variables. You would be better
> off
> creating a class, making your variables members(properties) of this
> class
> and
> attaching your calss to either Session or Application. I also usually
> declare
> a static member on the class with the string id which is used to
> access
> the
> object of the class from the application collection. This way you are
> fully
> proteced from typos in you string ids
>
> HTH, Michael
>
> "Davíð Þórisson" wrote:
>
>> now in my web I have some global variables to be used in many
>> different
>> subpages, in the old ASP I simply loaded a variables.asp file into
>> memory
>> using the eval() function. Now I'd like to use XML but what method
>> would
>> I
>> use to load the entries from the xml file into memory and make them
>> quickly
>> accessible globally in the web code? Just need to know what functions
>> specifically I should start reading about!
>>
>> Thx
>>
>>
>>


Nov 18 '05 #6
One way of doing this would be to create a class and inherit it from
System.Web.UI.Page somthing like this:

public class MyPageClass : System.Web.UI.Page
{

private string title;
public string Title {get{return title;}}

override protected void OnInit(EventArgs e)
{
base.OnInit(e);
title = "......";
}
}

Now, after you created a new page in your project, open its code-behind
class and change the default base class it inherits from (which will be
System.Web.UI.Page) to the class you just created. This way the MyPageClass
will become an ancestor of all your pages, so anywhere in the code both in
code behind class and imbedded code you will have access to the properties
and methods you would define in MyPageClass class.
Keep in mind that a new instance of this class will be created every time
yor page is generated, so any values kept in the memebers of this class will
not survive the roundtrip.
To take care of this you would need another class wich would be instanciated
in the application start event and attached to the Application (if it is
application-wide variables). The MyPage class would retrieve this object and
populate the values.

The beauty of this approach is that you have all functionality of
application scope variables easily accessible from any of your pages: to
access the title from a page all you need to do is to write this.Title or
just Title. Compiler will check for you both the names and the data types of
all your variables. And all details of how it is implemented are hidden in a
single central place.

"DavÃ*ð Þórisson" wrote:
Michael, since I'm not so experienced in .Net, how would you construct such
a class so that you can access the variables eg
string title = Web1.Title;

?
"DavÃ*ð Þórisson" <db**@hi.is> wrote in message
news:eV**************@TK2MSFTNGP12.phx.gbl...
good point Michael, I just cannot grasp the concept of using a Class
(=code) for storing data (normally stored as strings, dbase entries or as
in my ASP example as variables in a text file then evaled())...
I will keep your idea in mind, has some interesting aspects to look into

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:26**********************************@microsof t.com...
well, with xml you will have to write something like
MyXmlDoc["Web1"].Attributes["Title"].Value
assuming that MyXmlDoc is your document looks something like
<root><Web1 Title="...."/><Web2 Title="..."/></root>
A lot of coding to what end? still you can mistype atribute name or node
name and the compiler will not tell you a thing
on the other hand with the class - you can define methods
like getTitle, which would take the web name as a parameter, and even
throw
an exception to notify you that the web name is incorrect

"DavÃ*ð Þórisson" wrote:

Thx Michael,
well you see I have several webs on the same application (using the same
core but different layouts and urls) so that the variables vary
according to
which web it is. I want to be able to quickly access the web specific
variables eg
string Title = Web1.Title ...

instead of having several titles eg
string TitleForWeb1
string TitleForWeb2 ...

thats the idea!

"mfeingold" <mf*******@discussions.microsoft.com> wrote in message
news:9D**********************************@microsof t.com...
> XmlDocument class and its methods (like Load and LoadXML). On the
> other
> hand
> I am not sure why Xml? XML is a lot of things, all of them great, but
> it
> is
> hardly the best way to keep a bunch of variables. You would be better
> off
> creating a class, making your variables members(properties) of this
> class
> and
> attaching your calss to either Session or Application. I also usually
> declare
> a static member on the class with the string id which is used to
> access
> the
> object of the class from the application collection. This way you are
> fully
> proteced from typos in you string ids
>
> HTH, Michael
>
> "DavÃ*ð Þórisson" wrote:
>
>> now in my web I have some global variables to be used in many
>> different
>> subpages, in the old ASP I simply loaded a variables.asp file into
>> memory
>> using the eval() function. Now I'd like to use XML but what method
>> would
>> I
>> use to load the entries from the xml file into memory and make them
>> quickly
>> accessible globally in the web code? Just need to know what functions
>> specifically I should start reading about!
>>
>> Thx
>>
>>
>>



Nov 18 '05 #7
Hang on a second, David. XML is great stuff, but it isn't the end-all and
be-all of programming. You stated that you have some "global variables to be
used in many different subpages." I would guess that means in-memory
objects. Now, XML is a great tool for passing data around in a distributed
application, as it is non-proprietry, and can be understood by any XML
client. But which of the following uses less memory space and processing in
your application:

Binary: 32767 (16 bits)

XML:

<data name="$this.TrayHeight" type="System.Int32, mscorlib,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>32767</value>
</data>

IOW, XML is great for what its great for, and lousy for what it's lousy for.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eh*************@TK2MSFTNGP11.phx.gbl...
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would I
use to load the entries from the xml file into memory and make them quickly accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx

Nov 18 '05 #8
My apologies, David.

After re-reading your question and my response, I can see that I was not
answering the question you asked, which is how to read data stored in an XML
file INTO memory, which is something altogether different from storing XML
data IN memory. Reading it from a file is a great idea, as exemplified by
the use of XML for the web.config and other configuration files that ASP.Net
and .Net in general uses.

In fact, using the web.config file might be your best bet to begin with. You
can easily use the built-in "appSettings" element in the web.config to
define your own data, which can easily be read from the file at run time.
Example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString"
value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
<add key="VoyagerPath" value="C:\VoyagerOnline" />
<add key="Timeout" value="15" />
</appSettings>
....

These configuration elements are easy to fetch at run-time. Example:

Dim Timeout As int =
System.Configuration.ConfigurationSettings.AppSett ings("Timeout")

You can also define custom configuration sections, if you have a lot of data
and need to organize it into a nice tree hierarchy.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eh*************@TK2MSFTNGP11.phx.gbl...
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would I
use to load the entries from the xml file into memory and make them quickly accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx

Nov 18 '05 #9
exactly Kevin, sounds exactly like I need and want to do... so simple and
elegant solution - thx!
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uv*************@TK2MSFTNGP15.phx.gbl...
My apologies, David.

After re-reading your question and my response, I can see that I was not
answering the question you asked, which is how to read data stored in an
XML
file INTO memory, which is something altogether different from storing XML
data IN memory. Reading it from a file is a great idea, as exemplified by
the use of XML for the web.config and other configuration files that
ASP.Net
and .Net in general uses.

In fact, using the web.config file might be your best bet to begin with.
You
can easily use the built-in "appSettings" element in the web.config to
define your own data, which can easily be read from the file at run time.
Example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString"
value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
<add key="VoyagerPath" value="C:\VoyagerOnline" />
<add key="Timeout" value="15" />
</appSettings>
...

These configuration elements are easy to fetch at run-time. Example:

Dim Timeout As int =
System.Configuration.ConfigurationSettings.AppSett ings("Timeout")

You can also define custom configuration sections, if you have a lot of
data
and need to organize it into a nice tree hierarchy.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eh*************@TK2MSFTNGP11.phx.gbl...
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would
I
use to load the entries from the xml file into memory and make them

quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx


Nov 18 '05 #10
Kevin, so far so good but .Net doesn't allow me to split the appsettings
into subgroups eg
<appSettings>
<Web1Group>
<add key="Title" value="Title of web 1"/>
...
</Web1Group>
<Web2Group>
<add key="Title" value="Title of web 2"/>
...
</Web2Group>
</appSettings>

The error I get: "Unrecognized element."

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uv*************@TK2MSFTNGP15.phx.gbl...
My apologies, David.

After re-reading your question and my response, I can see that I was not
answering the question you asked, which is how to read data stored in an
XML
file INTO memory, which is something altogether different from storing XML
data IN memory. Reading it from a file is a great idea, as exemplified by
the use of XML for the web.config and other configuration files that
ASP.Net
and .Net in general uses.

In fact, using the web.config file might be your best bet to begin with.
You
can easily use the built-in "appSettings" element in the web.config to
define your own data, which can easily be read from the file at run time.
Example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString"
value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
<add key="VoyagerPath" value="C:\VoyagerOnline" />
<add key="Timeout" value="15" />
</appSettings>
...

These configuration elements are easy to fetch at run-time. Example:

Dim Timeout As int =
System.Configuration.ConfigurationSettings.AppSett ings("Timeout")

You can also define custom configuration sections, if you have a lot of
data
and need to organize it into a nice tree hierarchy.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eh*************@TK2MSFTNGP11.phx.gbl...
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory
using the eval() function. Now I'd like to use XML but what method would
I
use to load the entries from the xml file into memory and make them

quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx


Nov 18 '05 #11
Correct. Remember I mentioned that you can create your own customized
Sections? That's what you need here. See the following SDK article for more
information about how:

http://msdn.microsoft.com/library/de...tiongroups.asp

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Kevin, so far so good but .Net doesn't allow me to split the appsettings
into subgroups eg
<appSettings>
<Web1Group>
<add key="Title" value="Title of web 1"/>
...
</Web1Group>
<Web2Group>
<add key="Title" value="Title of web 2"/>
...
</Web2Group>
</appSettings>

The error I get: "Unrecognized element."

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uv*************@TK2MSFTNGP15.phx.gbl...
My apologies, David.

After re-reading your question and my response, I can see that I was not
answering the question you asked, which is how to read data stored in an
XML
file INTO memory, which is something altogether different from storing XML data IN memory. Reading it from a file is a great idea, as exemplified by the use of XML for the web.config and other configuration files that
ASP.Net
and .Net in general uses.

In fact, using the web.config file might be your best bet to begin with.
You
can easily use the built-in "appSettings" element in the web.config to
define your own data, which can easily be read from the file at run time. Example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString"
value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
<add key="VoyagerPath" value="C:\VoyagerOnline" />
<add key="Timeout" value="15" />
</appSettings>
...

These configuration elements are easy to fetch at run-time. Example:

Dim Timeout As int =
System.Configuration.ConfigurationSettings.AppSett ings("Timeout")

You can also define custom configuration sections, if you have a lot of
data
and need to organize it into a nice tree hierarchy.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eh*************@TK2MSFTNGP11.phx.gbl...
now in my web I have some global variables to be used in many different
subpages, in the old ASP I simply loaded a variables.asp file into memory using the eval() function. Now I'd like to use XML but what method would I
use to load the entries from the xml file into memory and make them

quickly
accessible globally in the web code? Just need to know what functions
specifically I should start reading about!

Thx



Nov 18 '05 #12
I have to admit this is far beyond my knowledge so I just try to copy &
paste with some common sense... so far I've got the xml file correct but

NameValueCollection sampleConfig =
(NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1");
string strKeyValue = (string)sampleConfig["Title"];
myLabel.Text = myVar;

just brings on an error (surprise): "The type or namespace name
'NameValueCollection' could not be found (are you missing a using directive
or an assembly reference?)"
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Correct. Remember I mentioned that you can create your own customized
Sections? That's what you need here. See the following SDK article for
more
information about how:

http://msdn.microsoft.com/library/de...tiongroups.asp

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Kevin, so far so good but .Net doesn't allow me to split the appsettings
into subgroups eg
<appSettings>
<Web1Group>
<add key="Title" value="Title of web 1"/>
...
</Web1Group>
<Web2Group>
<add key="Title" value="Title of web 2"/>
...
</Web2Group>
</appSettings>

The error I get: "Unrecognized element."

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uv*************@TK2MSFTNGP15.phx.gbl...
> My apologies, David.
>
> After re-reading your question and my response, I can see that I was
> not
> answering the question you asked, which is how to read data stored in
> an
> XML
> file INTO memory, which is something altogether different from storing XML > data IN memory. Reading it from a file is a great idea, as exemplified by > the use of XML for the web.config and other configuration files that
> ASP.Net
> and .Net in general uses.
>
> In fact, using the web.config file might be your best bet to begin
> with.
> You
> can easily use the built-in "appSettings" element in the web.config to
> define your own data, which can easily be read from the file at run time. > Example:
>
> <?xml version="1.0" encoding="utf-8" ?>
> <configuration>
> <appSettings>
> <add key="ConnectionString"
> value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
> <add key="VoyagerPath" value="C:\VoyagerOnline" />
> <add key="Timeout" value="15" />
> </appSettings>
> ...
>
> These configuration elements are easy to fetch at run-time. Example:
>
> Dim Timeout As int =
> System.Configuration.ConfigurationSettings.AppSett ings("Timeout")
>
> You can also define custom configuration sections, if you have a lot of
> data
> and need to organize it into a nice tree hierarchy.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:eh*************@TK2MSFTNGP11.phx.gbl...
>> now in my web I have some global variables to be used in many
>> different
>> subpages, in the old ASP I simply loaded a variables.asp file into memory >> using the eval() function. Now I'd like to use XML but what method would >> I
>> use to load the entries from the xml file into memory and make them
> quickly
>> accessible globally in the web code? Just need to know what functions
>> specifically I should start reading about!
>>
>> Thx
>>
>>
>
>



Nov 18 '05 #13
If the type cannot be found, one or both of 2 things is happening. Either
you haven't referenced the assembly (DLL), or you haven't added a using
statement to negate the necessity of using the complete NameSpace hierarchy
in your code. The complete NameSpace for NameValueCollection is
"System.Collections.Specialized.NameValueCollectio n".

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"Davíð Þórisson" <db**@hi.is> wrote in message
news:#o**************@TK2MSFTNGP12.phx.gbl...
I have to admit this is far beyond my knowledge so I just try to copy &
paste with some common sense... so far I've got the xml file correct but

NameValueCollection sampleConfig =
(NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1"
); string strKeyValue = (string)sampleConfig["Title"];
myLabel.Text = myVar;

just brings on an error (surprise): "The type or namespace name
'NameValueCollection' could not be found (are you missing a using directive or an assembly reference?)"
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Correct. Remember I mentioned that you can create your own customized
Sections? That's what you need here. See the following SDK article for
more
information about how:

http://msdn.microsoft.com/library/de...tiongroups.asp
--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Kevin, so far so good but .Net doesn't allow me to split the appsettings into subgroups eg
<appSettings>
<Web1Group>
<add key="Title" value="Title of web 1"/>
...
</Web1Group>
<Web2Group>
<add key="Title" value="Title of web 2"/>
...
</Web2Group>
</appSettings>

The error I get: "Unrecognized element."

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uv*************@TK2MSFTNGP15.phx.gbl...
> My apologies, David.
>
> After re-reading your question and my response, I can see that I was
> not
> answering the question you asked, which is how to read data stored in
> an
> XML
> file INTO memory, which is something altogether different from storing
XML
> data IN memory. Reading it from a file is a great idea, as
exemplified by
> the use of XML for the web.config and other configuration files that
> ASP.Net
> and .Net in general uses.
>
> In fact, using the web.config file might be your best bet to begin
> with.
> You
> can easily use the built-in "appSettings" element in the web.config

to > define your own data, which can easily be read from the file at run

time.
> Example:
>
> <?xml version="1.0" encoding="utf-8" ?>
> <configuration>
> <appSettings>
> <add key="ConnectionString"
> value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
> <add key="VoyagerPath" value="C:\VoyagerOnline" />
> <add key="Timeout" value="15" />
> </appSettings>
> ...
>
> These configuration elements are easy to fetch at run-time. Example:
>
> Dim Timeout As int =
> System.Configuration.ConfigurationSettings.AppSett ings("Timeout")
>
> You can also define custom configuration sections, if you have a lot of > data
> and need to organize it into a nice tree hierarchy.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:eh*************@TK2MSFTNGP11.phx.gbl...
>> now in my web I have some global variables to be used in many
>> different
>> subpages, in the old ASP I simply loaded a variables.asp file into

memory
>> using the eval() function. Now I'd like to use XML but what method

would
>> I
>> use to load the entries from the xml file into memory and make them
> quickly
>> accessible globally in the web code? Just need to know what functions >> specifically I should start reading about!
>>
>> Thx
>>
>>
>
>



Nov 18 '05 #14
Kevin
could you kindly email me, I'm so close to getting this done (the using
statement is there) still some error I can't figure out :(
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uS**************@TK2MSFTNGP14.phx.gbl...
If the type cannot be found, one or both of 2 things is happening. Either
you haven't referenced the assembly (DLL), or you haven't added a using
statement to negate the necessity of using the complete NameSpace
hierarchy
in your code. The complete NameSpace for NameValueCollection is
"System.Collections.Specialized.NameValueCollectio n".

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"Davíð Þórisson" <db**@hi.is> wrote in message
news:#o**************@TK2MSFTNGP12.phx.gbl...
I have to admit this is far beyond my knowledge so I just try to copy &
paste with some common sense... so far I've got the xml file correct but

NameValueCollection sampleConfig =

(NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1"
);
string strKeyValue = (string)sampleConfig["Title"];
myLabel.Text = myVar;

just brings on an error (surprise): "The type or namespace name
'NameValueCollection' could not be found (are you missing a using

directive
or an assembly reference?)"
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
> Correct. Remember I mentioned that you can create your own customized
> Sections? That's what you need here. See the following SDK article for
> more
> information about how:
>
> http://msdn.microsoft.com/library/de...tiongroups.asp >
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:ez**************@tk2msftngp13.phx.gbl...
>> Kevin, so far so good but .Net doesn't allow me to split the appsettings >> into subgroups eg
>> <appSettings>
>> <Web1Group>
>> <add key="Title" value="Title of web 1"/>
>> ...
>> </Web1Group>
>> <Web2Group>
>> <add key="Title" value="Title of web 2"/>
>> ...
>> </Web2Group>
>> </appSettings>
>>
>> The error I get: "Unrecognized element."
>>
>>
>>
>> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> news:uv*************@TK2MSFTNGP15.phx.gbl...
>> > My apologies, David.
>> >
>> > After re-reading your question and my response, I can see that I was
>> > not
>> > answering the question you asked, which is how to read data stored
>> > in
>> > an
>> > XML
>> > file INTO memory, which is something altogether different from storing > XML
>> > data IN memory. Reading it from a file is a great idea, as exemplified > by
>> > the use of XML for the web.config and other configuration files that
>> > ASP.Net
>> > and .Net in general uses.
>> >
>> > In fact, using the web.config file might be your best bet to begin
>> > with.
>> > You
>> > can easily use the built-in "appSettings" element in the web.config to >> > define your own data, which can easily be read from the file at run
> time.
>> > Example:
>> >
>> > <?xml version="1.0" encoding="utf-8" ?>
>> > <configuration>
>> > <appSettings>
>> > <add key="ConnectionString"
>> > value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
>> > <add key="VoyagerPath" value="C:\VoyagerOnline" />
>> > <add key="Timeout" value="15" />
>> > </appSettings>
>> > ...
>> >
>> > These configuration elements are easy to fetch at run-time. Example:
>> >
>> > Dim Timeout As int =
>> > System.Configuration.ConfigurationSettings.AppSett ings("Timeout")
>> >
>> > You can also define custom configuration sections, if you have a lot of >> > data
>> > and need to organize it into a nice tree hierarchy.
>> >
>> > --
>> > HTH,
>> > Kevin Spencer
>> > .Net Developer
>> > Microsoft MVP
>> > I get paid good money to
>> > solve puzzles for a living
>> >
>> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> > news:eh*************@TK2MSFTNGP11.phx.gbl...
>> >> now in my web I have some global variables to be used in many
>> >> different
>> >> subpages, in the old ASP I simply loaded a variables.asp file into
> memory
>> >> using the eval() function. Now I'd like to use XML but what method
> would
>> >> I
>> >> use to load the entries from the xml file into memory and make them
>> > quickly
>> >> accessible globally in the web code? Just need to know what functions >> >> specifically I should start reading about!
>> >>
>> >> Thx
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 18 '05 #15
Hi David,

I'm afraid I don't help people by email, for a number of reasons too long to
go into here.

I will be happy to continue helping you on this newsgroup, however, if you
can tell me where you're having trouble. the article (and related articles)
should give you what you need to know. The section head for the article I
pointed you to is at:

http://msdn.microsoft.com/library/en...asp?frame=true

but I can also answer any specific questions you may have.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eg**************@TK2MSFTNGP11.phx.gbl...
Kevin
could you kindly email me, I'm so close to getting this done (the using
statement is there) still some error I can't figure out :(
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uS**************@TK2MSFTNGP14.phx.gbl...
If the type cannot be found, one or both of 2 things is happening. Either
you haven't referenced the assembly (DLL), or you haven't added a using
statement to negate the necessity of using the complete NameSpace
hierarchy
in your code. The complete NameSpace for NameValueCollection is
"System.Collections.Specialized.NameValueCollectio n".

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"Davíð Þórisson" <db**@hi.is> wrote in message
news:#o**************@TK2MSFTNGP12.phx.gbl...
I have to admit this is far beyond my knowledge so I just try to copy &
paste with some common sense... so far I've got the xml file correct but
NameValueCollection sampleConfig =

(NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1" );
string strKeyValue = (string)sampleConfig["Title"];
myLabel.Text = myVar;

just brings on an error (surprise): "The type or namespace name
'NameValueCollection' could not be found (are you missing a using

directive
or an assembly reference?)"
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
> Correct. Remember I mentioned that you can create your own customized
> Sections? That's what you need here. See the following SDK article for > more
> information about how:
>
>

http://msdn.microsoft.com/library/de...tiongroups.asp
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:ez**************@tk2msftngp13.phx.gbl...
>> Kevin, so far so good but .Net doesn't allow me to split the

appsettings
>> into subgroups eg
>> <appSettings>
>> <Web1Group>
>> <add key="Title" value="Title of web 1"/>
>> ...
>> </Web1Group>
>> <Web2Group>
>> <add key="Title" value="Title of web 2"/>
>> ...
>> </Web2Group>
>> </appSettings>
>>
>> The error I get: "Unrecognized element."
>>
>>
>>
>> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> news:uv*************@TK2MSFTNGP15.phx.gbl...
>> > My apologies, David.
>> >
>> > After re-reading your question and my response, I can see that I was >> > not
>> > answering the question you asked, which is how to read data stored
>> > in
>> > an
>> > XML
>> > file INTO memory, which is something altogether different from

storing
> XML
>> > data IN memory. Reading it from a file is a great idea, as

exemplified
> by
>> > the use of XML for the web.config and other configuration files that >> > ASP.Net
>> > and .Net in general uses.
>> >
>> > In fact, using the web.config file might be your best bet to begin
>> > with.
>> > You
>> > can easily use the built-in "appSettings" element in the web.config to
>> > define your own data, which can easily be read from the file at
run > time.
>> > Example:
>> >
>> > <?xml version="1.0" encoding="utf-8" ?>
>> > <configuration>
>> > <appSettings>
>> > <add key="ConnectionString"
>> > value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
>> > <add key="VoyagerPath" value="C:\VoyagerOnline" />
>> > <add key="Timeout" value="15" />
>> > </appSettings>
>> > ...
>> >
>> > These configuration elements are easy to fetch at run-time. Example: >> >
>> > Dim Timeout As int =
>> > System.Configuration.ConfigurationSettings.AppSett ings("Timeout")
>> >
>> > You can also define custom configuration sections, if you have a lot of
>> > data
>> > and need to organize it into a nice tree hierarchy.
>> >
>> > --
>> > HTH,
>> > Kevin Spencer
>> > .Net Developer
>> > Microsoft MVP
>> > I get paid good money to
>> > solve puzzles for a living
>> >
>> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> > news:eh*************@TK2MSFTNGP11.phx.gbl...
>> >> now in my web I have some global variables to be used in many
>> >> different
>> >> subpages, in the old ASP I simply loaded a variables.asp file

into > memory
>> >> using the eval() function. Now I'd like to use XML but what method > would
>> >> I
>> >> use to load the entries from the xml file into memory and make them >> > quickly
>> >> accessible globally in the web code? Just need to know what

functions
>> >> specifically I should start reading about!
>> >>
>> >> Thx
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 18 '05 #16
no prob Kevin, I understand.
After some Googling I finally managed to solve this although I don't know at
all why. What I did was changing:
<section name="mySection"
type="System.Configuration.NameValueSectionHandler ,System/>
to:
<section name="mySection"
type="System.Configuration.NameValueSectionHandler ,System,
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089,
Custom=null" />

god knows what that Version bla bla does but it works!!! (I always thought
XML was sooo easy and clean code)

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:ev**************@TK2MSFTNGP11.phx.gbl...
Hi David,

I'm afraid I don't help people by email, for a number of reasons too long
to
go into here.

I will be happy to continue helping you on this newsgroup, however, if
you
can tell me where you're having trouble. the article (and related
articles)
should give you what you need to know. The section head for the article I
pointed you to is at:

http://msdn.microsoft.com/library/en...asp?frame=true

but I can also answer any specific questions you may have.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eg**************@TK2MSFTNGP11.phx.gbl...
Kevin
could you kindly email me, I'm so close to getting this done (the using
statement is there) still some error I can't figure out :(
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uS**************@TK2MSFTNGP14.phx.gbl...
> If the type cannot be found, one or both of 2 things is happening. Either > you haven't referenced the assembly (DLL), or you haven't added a using
> statement to negate the necessity of using the complete NameSpace
> hierarchy
> in your code. The complete NameSpace for NameValueCollection is
> "System.Collections.Specialized.NameValueCollectio n".
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:#o**************@TK2MSFTNGP12.phx.gbl...
>> I have to admit this is far beyond my knowledge so I just try to copy
>> &
>> paste with some common sense... so far I've got the xml file correct but >>
>> NameValueCollection sampleConfig =
>>
> (NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1" > );
>> string strKeyValue = (string)sampleConfig["Title"];
>> myLabel.Text = myVar;
>>
>> just brings on an error (surprise): "The type or namespace name
>> 'NameValueCollection' could not be found (are you missing a using
> directive
>> or an assembly reference?)"
>>
>>
>> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> news:%2****************@tk2msftngp13.phx.gbl...
>> > Correct. Remember I mentioned that you can create your own
>> > customized
>> > Sections? That's what you need here. See the following SDK article for >> > more
>> > information about how:
>> >
>> >
> http://msdn.microsoft.com/library/de...tiongroups.asp >> >
>> > --
>> > HTH,
>> > Kevin Spencer
>> > .Net Developer
>> > Microsoft MVP
>> > I get paid good money to
>> > solve puzzles for a living
>> >
>> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> > news:ez**************@tk2msftngp13.phx.gbl...
>> >> Kevin, so far so good but .Net doesn't allow me to split the
> appsettings
>> >> into subgroups eg
>> >> <appSettings>
>> >> <Web1Group>
>> >> <add key="Title" value="Title of web 1"/>
>> >> ...
>> >> </Web1Group>
>> >> <Web2Group>
>> >> <add key="Title" value="Title of web 2"/>
>> >> ...
>> >> </Web2Group>
>> >> </appSettings>
>> >>
>> >> The error I get: "Unrecognized element."
>> >>
>> >>
>> >>
>> >> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> >> news:uv*************@TK2MSFTNGP15.phx.gbl...
>> >> > My apologies, David.
>> >> >
>> >> > After re-reading your question and my response, I can see that I was >> >> > not
>> >> > answering the question you asked, which is how to read data
>> >> > stored
>> >> > in
>> >> > an
>> >> > XML
>> >> > file INTO memory, which is something altogether different from
> storing
>> > XML
>> >> > data IN memory. Reading it from a file is a great idea, as
> exemplified
>> > by
>> >> > the use of XML for the web.config and other configuration files that >> >> > ASP.Net
>> >> > and .Net in general uses.
>> >> >
>> >> > In fact, using the web.config file might be your best bet to
>> >> > begin
>> >> > with.
>> >> > You
>> >> > can easily use the built-in "appSettings" element in the web.config > to
>> >> > define your own data, which can easily be read from the file at run >> > time.
>> >> > Example:
>> >> >
>> >> > <?xml version="1.0" encoding="utf-8" ?>
>> >> > <configuration>
>> >> > <appSettings>
>> >> > <add key="ConnectionString"
>> >> > value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
>> >> > <add key="VoyagerPath" value="C:\VoyagerOnline" />
>> >> > <add key="Timeout" value="15" />
>> >> > </appSettings>
>> >> > ...
>> >> >
>> >> > These configuration elements are easy to fetch at run-time. Example: >> >> >
>> >> > Dim Timeout As int =
>> >> > System.Configuration.ConfigurationSettings.AppSett ings("Timeout")
>> >> >
>> >> > You can also define custom configuration sections, if you have a lot > of
>> >> > data
>> >> > and need to organize it into a nice tree hierarchy.
>> >> >
>> >> > --
>> >> > HTH,
>> >> > Kevin Spencer
>> >> > .Net Developer
>> >> > Microsoft MVP
>> >> > I get paid good money to
>> >> > solve puzzles for a living
>> >> >
>> >> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> >> > news:eh*************@TK2MSFTNGP11.phx.gbl...
>> >> >> now in my web I have some global variables to be used in many
>> >> >> different
>> >> >> subpages, in the old ASP I simply loaded a variables.asp file into >> > memory
>> >> >> using the eval() function. Now I'd like to use XML but what method >> > would
>> >> >> I
>> >> >> use to load the entries from the xml file into memory and make them >> >> > quickly
>> >> >> accessible globally in the web code? Just need to know what
> functions
>> >> >> specifically I should start reading about!
>> >> >>
>> >> >> Thx
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 18 '05 #17
Aha! Well, there you go. Nice work, David.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:u0*************@TK2MSFTNGP09.phx.gbl...
no prob Kevin, I understand.
After some Googling I finally managed to solve this although I don't know at all why. What I did was changing:
<section name="mySection"
type="System.Configuration.NameValueSectionHandler ,System/>
to:
<section name="mySection"
type="System.Configuration.NameValueSectionHandler ,System,
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089,
Custom=null" />

god knows what that Version bla bla does but it works!!! (I always thought
XML was sooo easy and clean code)

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:ev**************@TK2MSFTNGP11.phx.gbl...
Hi David,

I'm afraid I don't help people by email, for a number of reasons too long
to
go into here.

I will be happy to continue helping you on this newsgroup, however, if
you
can tell me where you're having trouble. the article (and related
articles)
should give you what you need to know. The section head for the article I pointed you to is at:

http://msdn.microsoft.com/library/en...asp?frame=true
but I can also answer any specific questions you may have.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Davíð Þórisson" <db**@hi.is> wrote in message
news:eg**************@TK2MSFTNGP11.phx.gbl...
Kevin
could you kindly email me, I'm so close to getting this done (the using
statement is there) still some error I can't figure out :(
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uS**************@TK2MSFTNGP14.phx.gbl...
> If the type cannot be found, one or both of 2 things is happening.

Either
> you haven't referenced the assembly (DLL), or you haven't added a using > statement to negate the necessity of using the complete NameSpace
> hierarchy
> in your code. The complete NameSpace for NameValueCollection is
> "System.Collections.Specialized.NameValueCollectio n".
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
>
> "Davíð Þórisson" <db**@hi.is> wrote in message
> news:#o**************@TK2MSFTNGP12.phx.gbl...
>> I have to admit this is far beyond my knowledge so I just try to copy >> &
>> paste with some common sense... so far I've got the xml file correct

but
>>
>> NameValueCollection sampleConfig =
>>
>

(NameValueCollection)ConfigurationSettings.GetConf ig("mySectionGroup/myWeb1"
> );
>> string strKeyValue = (string)sampleConfig["Title"];
>> myLabel.Text = myVar;
>>
>> just brings on an error (surprise): "The type or namespace name
>> 'NameValueCollection' could not be found (are you missing a using
> directive
>> or an assembly reference?)"
>>
>>
>> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> news:%2****************@tk2msftngp13.phx.gbl...
>> > Correct. Remember I mentioned that you can create your own
>> > customized
>> > Sections? That's what you need here. See the following SDK article

for
>> > more
>> > information about how:
>> >
>> >
>

http://msdn.microsoft.com/library/de...tiongroups.asp
>> >
>> > --
>> > HTH,
>> > Kevin Spencer
>> > .Net Developer
>> > Microsoft MVP
>> > I get paid good money to
>> > solve puzzles for a living
>> >
>> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> > news:ez**************@tk2msftngp13.phx.gbl...
>> >> Kevin, so far so good but .Net doesn't allow me to split the
> appsettings
>> >> into subgroups eg
>> >> <appSettings>
>> >> <Web1Group>
>> >> <add key="Title" value="Title of web 1"/>
>> >> ...
>> >> </Web1Group>
>> >> <Web2Group>
>> >> <add key="Title" value="Title of web 2"/>
>> >> ...
>> >> </Web2Group>
>> >> </appSettings>
>> >>
>> >> The error I get: "Unrecognized element."
>> >>
>> >>
>> >>
>> >> "Kevin Spencer" <ks******@takempis.com> wrote in message
>> >> news:uv*************@TK2MSFTNGP15.phx.gbl...
>> >> > My apologies, David.
>> >> >
>> >> > After re-reading your question and my response, I can see that I was
>> >> > not
>> >> > answering the question you asked, which is how to read data
>> >> > stored
>> >> > in
>> >> > an
>> >> > XML
>> >> > file INTO memory, which is something altogether different from
> storing
>> > XML
>> >> > data IN memory. Reading it from a file is a great idea, as
> exemplified
>> > by
>> >> > the use of XML for the web.config and other configuration files

that
>> >> > ASP.Net
>> >> > and .Net in general uses.
>> >> >
>> >> > In fact, using the web.config file might be your best bet to
>> >> > begin
>> >> > with.
>> >> > You
>> >> > can easily use the built-in "appSettings" element in the

web.config
> to
>> >> > define your own data, which can easily be read from the file at

run
>> > time.
>> >> > Example:
>> >> >
>> >> > <?xml version="1.0" encoding="utf-8" ?>
>> >> > <configuration>
>> >> > <appSettings>
>> >> > <add key="ConnectionString"
>> >> > value="server=blah;uid=Blah;pwd=blahblah;database= blah"/>
>> >> > <add key="VoyagerPath" value="C:\VoyagerOnline" />
>> >> > <add key="Timeout" value="15" />
>> >> > </appSettings>
>> >> > ...
>> >> >
>> >> > These configuration elements are easy to fetch at run-time.

Example:
>> >> >
>> >> > Dim Timeout As int =
>> >> >
System.Configuration.ConfigurationSettings.AppSett ings("Timeout") >> >> >
>> >> > You can also define custom configuration sections, if you have

a lot
> of
>> >> > data
>> >> > and need to organize it into a nice tree hierarchy.
>> >> >
>> >> > --
>> >> > HTH,
>> >> > Kevin Spencer
>> >> > .Net Developer
>> >> > Microsoft MVP
>> >> > I get paid good money to
>> >> > solve puzzles for a living
>> >> >
>> >> > "Davíð Þórisson" <db**@hi.is> wrote in message
>> >> > news:eh*************@TK2MSFTNGP11.phx.gbl...
>> >> >> now in my web I have some global variables to be used in many
>> >> >> different
>> >> >> subpages, in the old ASP I simply loaded a variables.asp file

into
>> > memory
>> >> >> using the eval() function. Now I'd like to use XML but what

method
>> > would
>> >> >> I
>> >> >> use to load the entries from the xml file into memory and make

them
>> >> > quickly
>> >> >> accessible globally in the web code? Just need to know what
> functions
>> >> >> specifically I should start reading about!
>> >> >>
>> >> >> Thx
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Nov 18 '05 #18

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

Similar topics

8
by: jose luis fernandez diaz | last post by:
Hi, I am reading Stroustrup's book 'C++ Programming Language'. In the 10.4.9 section (Nonlocal Store) he says: "A variable defined outside any function (that is global, namespace, and class...
9
by: Charley Kyd | last post by:
I'm a newbie who needs advice about how to use external files of JavaScript code. I spent an hour this afternoon browsing through JavaScript books at the local book store. In about 15 different...
4
by: gsyoon | last post by:
hi, all. I'm trying to make a "framework" to store the return value of a function to a global memory. My first attempt was 1) void store_to_global( char * type_name ) { if ( strcmp(...
5
by: j | last post by:
Anyone here feel that "global variables" is misleading for variables whose scope is file scope? "global" seems to imply global visibility, while this isn't true for variables whose scope is file...
20
by: Sushil | last post by:
Hi gurus I was reading FAQ "alloca cannot be written portably, and is difficult to implement on machines without a conventional stack." I understand that the standard does not mandate...
3
by: Pavan | last post by:
Hi i would like to know abt the data variable storage in C like 1.where does global variables gets stored and why is it so .. 2.like wise static ,local variables, as for as i know i remember...
8
by: Vishwanathan Raman | last post by:
Hi I have a declared a static DataSet object SOBJ in Global.asax.I also have a localy defined DataSet LSOBJ in Global.asax which I am storing in Application State.Is there any technical...
3
by: Daves | last post by:
Please take your time to read the following, it's simple although the text is 3 paragraphs... Everytime an user is logged in I need to make a call to my sql server database to grab some specific...
3
by: frothpoker | last post by:
Guys, I'm sure this has been asked a million times but I can't seem to formulate a google search that returns what i'm looking for. I've go a dev and live environment. Currently the DB...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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,...
0
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...

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.