Showing posts with label plan. Show all posts
Showing posts with label plan. Show all posts

Saturday, March 31, 2012

Web Server and Database Server separated

Hi,

Here is the scenario. Our website is hosted by hosting company. We plan to host the database at our office. The website connects to our database at our office. Is this possible? Is there a performance issue?

Thanks.

Dennis

That certainly is possible.
Things to take into mind, you have a open connection to your database server to anyone on the intranet, so you have to secure the connection via firewall and IP access control list. You might also think about creating a Web Service at the location where your database is for the application on hosts machine to access your data. Connection to the service via SSL would be relatively secure.
Secondly, there will be a slowdown in perfermance since the performance of your website rely's on the speed of yours hosts connection, the speed of your connection, and traffic on both of your networks. A local connection is faster than a remote connection, especially for accessing large amounts of data and a high number of queries. So if your pipe from the host to your database location is not sufficient to support the traffic for you site there will be a performance issue.


It's likely possible (depending mostly on your database engine, and thefirewall situation between your office and the hosting company) butthere may be some pretty serious performance issues. The timethat it's going to take to get data across the Internet could besignificantly longer than over a LAN. Personally, I'd bepretty cautious about this configuration. Not that it won't work,but certainly, test it well.

Saturday, March 24, 2012

Web Service in ASP Application

I have a classic ASP application and don't plan on converting to .NET.
But, I would like to create a web service using the .NET Framework to
include in this application. Is this possible? If so, how do I go
about doing it?

Thanks!

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!Both types of applications can run in the same web but they
can not run in the same page nor can they share session state
without work-arounds such as a database that is used to
exchange data between the two types of applications.

Google: "asp"+"asp.net"+"session state"

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Amy Snyder" <amys@.yahoo.com> wrote in message
news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
> I have a classic ASP application and don't plan on converting to .NET.
> But, I would like to create a web service using the .NET Framework to
> include in this application. Is this possible? If so, how do I go
> about doing it?
> Thanks!
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
that's not true at all. you can build a webservice which integrates into a
..net engine and talks to your asp client using behaviors. The only
requirement is that the webserver support soap and WSDL. here's a link:
http://msdn.microsoft.com/library/d...ce/overview.asp

additionally, you can use XMLHTTP activeX technology to tie client-side
script to .net server-side functionality.

please note that both approaches assume an IE client. Non IE clients do not
support behaviors and some require a plugin for the activeX control.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
> Both types of applications can run in the same web but they
> can not run in the same page nor can they share session state
> without work-arounds such as a database that is used to
> exchange data between the two types of applications.
> Google: "asp"+"asp.net"+"session state"
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
>
> "Amy Snyder" <amys@.yahoo.com> wrote in message
> news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
>> I have a classic ASP application and don't plan on converting to .NET.
>> But, I would like to create a web service using the .NET Framework to
>> include in this application. Is this possible? If so, how do I go
>> about doing it?
>>
>> Thanks!
>>
>>
>>
>> *** Sent via Developersdex http://www.developersdex.com ***
>> Don't just participate in USENET...get rewarded for it!
I think you have misunderstood my reply. Which part(s) of my
comments do you consider to be incorrect?

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
> that's not true at all. you can build a webservice which integrates into a
> .net engine and talks to your asp client using behaviors. The only
> requirement is that the webserver support soap and WSDL. here's a link:
http://msdn.microsoft.com/library/d...ce/overview.asp
> additionally, you can use XMLHTTP activeX technology to tie client-side
> script to .net server-side functionality.
> please note that both approaches assume an IE client. Non IE clients do
not
> support behaviors and some require a plugin for the activeX control.
> --
> Regards,
> Alvin Bruney
> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
> Got tidbits? Get it here... http://tinyurl.com/27cok
> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in message
> news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
> > Both types of applications can run in the same web but they
> > can not run in the same page nor can they share session state
> > without work-arounds such as a database that is used to
> > exchange data between the two types of applications.
> > Google: "asp"+"asp.net"+"session state"
> > --
> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> > Architectural & e-Business Consulting -- Software Development
> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> > URL http://www.metromilwaukee.com/clintongallagher/
> > "Amy Snyder" <amys@.yahoo.com> wrote in message
> > news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
> >> I have a classic ASP application and don't plan on converting to .NET.
> >> But, I would like to create a web service using the .NET Framework to
> >> include in this application. Is this possible? If so, how do I go
> >> about doing it?
> >>
> >> Thanks!
> >>
> >>
> >>
> >> *** Sent via Developersdex http://www.developersdex.com ***
> >> Don't just participate in USENET...get rewarded for it!
I re-read your post and I apparently did misunderstand your reply. I offer
an apology.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:u6U9nlAgEHA.2612@.TK2MSFTNGP10.phx.gbl...
>I think you have misunderstood my reply. Which part(s) of my
> comments do you consider to be incorrect?
>
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
>
> "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
> news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
>> that's not true at all. you can build a webservice which integrates into
>> a
>> .net engine and talks to your asp client using behaviors. The only
>> requirement is that the webserver support soap and WSDL. here's a link:
>>
> http://msdn.microsoft.com/library/d...ce/overview.asp
>>
>> additionally, you can use XMLHTTP activeX technology to tie client-side
>> script to .net server-side functionality.
>>
>> please note that both approaches assume an IE client. Non IE clients do
> not
>> support behaviors and some require a plugin for the activeX control.
>>
>> --
>> Regards,
>> Alvin Bruney
>> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
>> Got tidbits? Get it here... http://tinyurl.com/27cok
>> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in
>> message
>> news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
>> > Both types of applications can run in the same web but they
>> > can not run in the same page nor can they share session state
>> > without work-arounds such as a database that is used to
>> > exchange data between the two types of applications.
>>> > Google: "asp"+"asp.net"+"session state"
>>> > --
>> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
>> > Architectural & e-Business Consulting -- Software Development
>> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
>> > URL http://www.metromilwaukee.com/clintongallagher/
>>>>>> > "Amy Snyder" <amys@.yahoo.com> wrote in message
>> > news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
>> >> I have a classic ASP application and don't plan on converting to .NET.
>> >> But, I would like to create a web service using the .NET Framework to
>> >> include in this application. Is this possible? If so, how do I go
>> >> about doing it?
>> >>
>> >> Thanks!
>> >>
>> >>
>> >>
>> >> *** Sent via Developersdex http://www.developersdex.com ***
>> >> Don't just participate in USENET...get rewarded for it!
>>>>
>>
Dinner is served.
Would you like any salt or pepper with your crow? :-)

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:OHa4PoHgEHA.140@.TK2MSFTNGP12.phx.gbl...
> I re-read your post and I apparently did misunderstand your reply. I offer
> an apology.
> --
> Regards,
> Alvin Bruney
> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
> Got tidbits? Get it here... http://tinyurl.com/27cok
> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in message
> news:u6U9nlAgEHA.2612@.TK2MSFTNGP10.phx.gbl...
> >I think you have misunderstood my reply. Which part(s) of my
> > comments do you consider to be incorrect?
> > --
> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> > Architectural & e-Business Consulting -- Software Development
> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> > URL http://www.metromilwaukee.com/clintongallagher/
> > "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
> > news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
> >> that's not true at all. you can build a webservice which integrates
into
> >> a
> >> .net engine and talks to your asp client using behaviors. The only
> >> requirement is that the webserver support soap and WSDL. here's a link:
> >>
http://msdn.microsoft.com/library/d...ce/overview.asp
> >>
> >> additionally, you can use XMLHTTP activeX technology to tie client-side
> >> script to .net server-side functionality.
> >>
> >> please note that both approaches assume an IE client. Non IE clients do
> > not
> >> support behaviors and some require a plugin for the activeX control.
> >>
> >> --
> >> Regards,
> >> Alvin Bruney
> >> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
> >> Got tidbits? Get it here... http://tinyurl.com/27cok
> >> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in
> >> message
> >> news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
> >> > Both types of applications can run in the same web but they
> >> > can not run in the same page nor can they share session state
> >> > without work-arounds such as a database that is used to
> >> > exchange data between the two types of applications.
> >> >> > Google: "asp"+"asp.net"+"session state"
> >> >> > --
> >> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> >> > Architectural & e-Business Consulting -- Software Development
> >> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> >> > URL http://www.metromilwaukee.com/clintongallagher/
> >> >> >> >> >> > "Amy Snyder" <amys@.yahoo.com> wrote in message
> >> > news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
> >> >> I have a classic ASP application and don't plan on converting to
..NET.
> >> >> But, I would like to create a web service using the .NET Framework
to
> >> >> include in this application. Is this possible? If so, how do I go
> >> >> about doing it?
> >> >>
> >> >> Thanks!
> >> >>
> >> >>
> >> >>
> >> >> *** Sent via Developersdex http://www.developersdex.com ***
> >> >> Don't just participate in USENET...get rewarded for it!
> >> >> >>
> >>
rub it in!

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:e4U9yaMgEHA.712@.TK2MSFTNGP09.phx.gbl...
> Dinner is served.
> Would you like any salt or pepper with your crow? :-)
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
> "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
> news:OHa4PoHgEHA.140@.TK2MSFTNGP12.phx.gbl...
>> I re-read your post and I apparently did misunderstand your reply. I
>> offer
>> an apology.
>>
>> --
>> Regards,
>> Alvin Bruney
>> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
>> Got tidbits? Get it here... http://tinyurl.com/27cok
>> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in
>> message
>> news:u6U9nlAgEHA.2612@.TK2MSFTNGP10.phx.gbl...
>> >I think you have misunderstood my reply. Which part(s) of my
>> > comments do you consider to be incorrect?
>>>> > --
>> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
>> > Architectural & e-Business Consulting -- Software Development
>> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
>> > URL http://www.metromilwaukee.com/clintongallagher/
>>>>>> > "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
>> > news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
>> >> that's not true at all. you can build a webservice which integrates
> into
>> >> a
>> >> .net engine and talks to your asp client using behaviors. The only
>> >> requirement is that the webserver support soap and WSDL. here's a
>> >> link:
>> >>
>> http://msdn.microsoft.com/library/d...ce/overview.asp
>> >>
>> >> additionally, you can use XMLHTTP activeX technology to tie
>> >> client-side
>> >> script to .net server-side functionality.
>> >>
>> >> please note that both approaches assume an IE client. Non IE clients
>> >> do
>> > not
>> >> support behaviors and some require a plugin for the activeX control.
>> >>
>> >> --
>> >> Regards,
>> >> Alvin Bruney
>> >> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
>> >> Got tidbits? Get it here... http://tinyurl.com/27cok
>> >> "clintonG" <csgallagher@.REMOVETHISTEXTmetromilwaukee.com> wrote in
>> >> message
>> >> news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
>> >> > Both types of applications can run in the same web but they
>> >> > can not run in the same page nor can they share session state
>> >> > without work-arounds such as a database that is used to
>> >> > exchange data between the two types of applications.
>> >>> >> > Google: "asp"+"asp.net"+"session state"
>> >>> >> > --
>> >> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
>> >> > Architectural & e-Business Consulting -- Software
>> >> > Development
>> >> > NET csgallagher@.REMOVETHISTEXTmetromilwaukee.com
>> >> > URL http://www.metromilwaukee.com/clintongallagher/
>> >>> >>> >>> >>> >> > "Amy Snyder" <amys@.yahoo.com> wrote in message
>> >> > news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
>> >> >> I have a classic ASP application and don't plan on converting to
> .NET.
>> >> >> But, I would like to create a web service using the .NET Framework
> to
>> >> >> include in this application. Is this possible? If so, how do I go
>> >> >> about doing it?
>> >> >>
>> >> >> Thanks!
>> >> >>
>> >> >>
>> >> >>
>> >> >> *** Sent via Developersdex http://www.developersdex.com ***
>> >> >> Don't just participate in USENET...get rewarded for it!
>> >>> >>> >>
>> >>
>>>>
>>

Web Service in ASP Application

I have a classic ASP application and don't plan on converting to .NET.
But, I would like to create a web service using the .NET Framework to
include in this application. Is this possible? If so, how do I go
about doing it?
Thanks!
*** Sent via Developersdex http://www.examnotes.net ***
Don't just participate in USENET...get rewarded for it!Both types of applications can run in the same web but they
can not run in the same page nor can they share session state
without work-arounds such as a database that is used to
exchange data between the two types of applications.
Google: "asp"+"asp.net"+"session state"
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
URL http://www.metromilwaukee.com/clintongallagher/
"Amy Snyder" <amys@.yahoo.com> wrote in message
news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
> I have a classic ASP application and don't plan on converting to .NET.
> But, I would like to create a web service using the .NET Framework to
> include in this application. Is this possible? If so, how do I go
> about doing it?
> Thanks!
>
> *** Sent via Developersdex http://www.examnotes.net ***
> Don't just participate in USENET...get rewarded for it!
that's not true at all. you can build a webservice which integrates into a
.net engine and talks to your asp client using behaviors. The only
requirement is that the webserver support soap and WSDL. here's a link:
http://msdn.microsoft.com/library/d...br />
view.asp
additionally, you can use XMLHTTP activeX technology to tie client-side
script to .net server-side functionality.
please note that both approaches assume an IE client. Non IE clients do not
support behaviors and some require a plugin for the activeX control.
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" < csgallagher@.REMOVETHISTEXTmetromilwaukee
.com> wrote in message
news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
> Both types of applications can run in the same web but they
> can not run in the same page nor can they share session state
> without work-arounds such as a database that is used to
> exchange data between the two types of applications.
> Google: "asp"+"asp.net"+"session state"
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
>
> "Amy Snyder" <amys@.yahoo.com> wrote in message
> news:eAvPN0tfEHA.2544@.TK2MSFTNGP10.phx.gbl...
>
I think you have misunderstood my reply. Which part(s) of my
comments do you consider to be incorrect?
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
URL http://www.metromilwaukee.com/clintongallagher/
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
> that's not true at all. you can build a webservice which integrates into a
> .net engine and talks to your asp client using behaviors. The only
> requirement is that the webserver support soap and WSDL. here's a link:
>
http://msdn.microsoft.com/library/d...ce/overview.asp[
color=darkred]
> additionally, you can use XMLHTTP activeX technology to tie client-side
> script to .net server-side functionality.
> please note that both approaches assume an IE client. Non IE clients do[/color]
not
> support behaviors and some require a plugin for the activeX control.
> --
> Regards,
> Alvin Bruney
> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
> Got tidbits? Get it here... http://tinyurl.com/27cok
> "clintonG" < csgallagher@.REMOVETHISTEXTmetromilwaukee
.com> wrote in message
> news:%23BSlFPufEHA.384@.TK2MSFTNGP10.phx.gbl...
>
I re-read your post and I apparently did misunderstand your reply. I offer
an apology.
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" < csgallagher@.REMOVETHISTEXTmetromilwaukee
.com> wrote in message
news:u6U9nlAgEHA.2612@.TK2MSFTNGP10.phx.gbl...
>I think you have misunderstood my reply. Which part(s) of my
> comments do you consider to be incorrect?
>
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
>
> "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
> news:e%23Kw6fzfEHA.3548@.TK2MSFTNGP09.phx.gbl...
> http://msdn.microsoft.com/library/d... />
erview.asp
> not
>
Dinner is served.
Would you like any salt or pepper with your crow? :-)
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
URL http://www.metromilwaukee.com/clintongallagher/
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:OHa4PoHgEHA.140@.TK2MSFTNGP12.phx.gbl...
> I re-read your post and I apparently did misunderstand your reply. I offer
> an apology.
> --
> Regards,
> Alvin Bruney
> [ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
> Got tidbits? Get it here... http://tinyurl.com/27cok
> "clintonG" < csgallagher@.REMOVETHISTEXTmetromilwaukee
.com> wrote in message
> news:u6U9nlAgEHA.2612@.TK2MSFTNGP10.phx.gbl...
into
http://msdn.microsoft.com/library/d...ce/overview.asp[
color=darkred]
.NET.
to
>
rub it in!
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"clintonG" < csgallagher@.REMOVETHISTEXTmetromilwaukee
.com> wrote in message
news:e4U9yaMgEHA.712@.TK2MSFTNGP09.phx.gbl...
> Dinner is served.
> Would you like any salt or pepper with your crow? :-)
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET csgallagher@.REMOVETHISTEXTmetromilwaukee
.com
> URL http://www.metromilwaukee.com/clintongallagher/
>
> "Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
> news:OHa4PoHgEHA.140@.TK2MSFTNGP12.phx.gbl...
> into
> http://msdn.microsoft.com/library/d... />
erview.asp
> .NET.
> to
>