473,468 Members | 1,445 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Can I run two localhost sites at once?

I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time. Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a directory
within your root folder and somehow have it still obey root-relative links?

-Darrel
Nov 19 '05 #1
23 1710
A site can differ by either the IP address, the hostname or the port.

Windows XP Pro doesn't support running multiple sites because some people
would likely use it to do stuff they aren't supposed to (like run a bad
hosting company off of it).

normally you solve link issues in ASP.Net by using a number of tools, such
as ~ in the path, Request.ApplicationPath and stuff like that. You
shouldn't develop an application to work at the root or not, it should work
in both situations.

you might want to check out:
http://www.informit.com/articles/art...&seqNum=2&rl=1

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"darrel" <no*****@hotmail.com> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time.
Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a
directory
within your root folder and somehow have it still obey root-relative
links?

-Darrel

Nov 19 '05 #2
> Windows XP Pro doesn't support running multiple sites because some people
would likely use it to do stuff they aren't supposed to (like run a bad
hosting company off of it).
That is the dumbest excuse I've ever heard for MS crippling a product. ;o)

OK, not the dumbest, but right up there. ;oD
normally you solve link issues in ASP.Net by using a number of tools, such
as ~ in the path, Request.ApplicationPath and stuff like that. You
shouldn't develop an application to work at the root or not, it should work in both situations.
That seems like good advice, but wouldn't it always have to be at the root
for root-relative linking?
you might want to check out:
http://www.informit.com/articles/art...&seqNum=2&rl=1


Root Path Reference Syntax seems nice, but is only a server-side solution. I
still have to deal with all my client side links to CSS files, js, images,
and static html files.

*sigh*

-Darrel
Nov 19 '05 #3
If you're running Windows Server 2003, you can set up as many web sites as
you want. On a Windows XP Pro box, you can set up only one. But you can set
up as many separate web applications in that site as you need.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
I'd rather be a hammer than a nail.

"darrel" <no*****@hotmail.com> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time.
Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a
directory
within your root folder and somehow have it still obey root-relative
links?

-Darrel

Nov 19 '05 #4
> If you're running Windows Server 2003, you can set up as many web sites as
you want. On a Windows XP Pro box, you can set up only one. But you can set up as many separate web applications in that site as you need.


It boggles the mind that MS would purposely annoy the very developers that
keep the .net thing going...

I guess we're gluttons for punishment.

-Darrel
Nov 19 '05 #5
Well, I'm no official spokesperson for MS, I'm guessing that's why, but I
could be way off :)

You never know what changes might come, so forcing one way is bad. I've been
in many reorgs where an independent site suddenly became a sub-site of
another one. When it comes to many of your client files such as css and js,
you are hopefully using master pages which makes this a lot less painful.
But I agree it isn't a global solution. Nonetheless, I would still hope
that you would consider trying to build it flexible enough to work both ways
(custom server controls can really help too!)

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"darrel" <no*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
Windows XP Pro doesn't support running multiple sites because some people
would likely use it to do stuff they aren't supposed to (like run a bad
hosting company off of it).


That is the dumbest excuse I've ever heard for MS crippling a product. ;o)

OK, not the dumbest, but right up there. ;oD
normally you solve link issues in ASP.Net by using a number of tools,
such
as ~ in the path, Request.ApplicationPath and stuff like that. You
shouldn't develop an application to work at the root or not, it should

work
in both situations.


That seems like good advice, but wouldn't it always have to be at the root
for root-relative linking?
you might want to check out:
http://www.informit.com/articles/art...&seqNum=2&rl=1


Root Path Reference Syntax seems nice, but is only a server-side solution.
I
still have to deal with all my client side links to CSS files, js, images,
and static html files.

*sigh*

-Darrel

Nov 19 '05 #6
> You never know what changes might come, so forcing one way is bad. I've
been
in many reorgs where an independent site suddenly became a sub-site of
another one.
That's true, though the better way to handle that is to use subdomains
(IMHO, of course).

In our case, we're two developers with complete control over the site(s).
Right now we have our existing .net site and are building our new .net site.
I need to maintain the old while building the new, hence the need/preference
to have two sites on my local machine.
When it comes to many of your client files such as css and js,
you are hopefully using master pages which makes this a lot less painful.


Nope. But close to it. We decided to hold off until we move to .net 2 for
that type of implementation. In this case, we're mainly using 'smart'
controls in the HEAD to maintain those types of links...so that's a valid
point...a lot of this I can handle server-side.

-Darrel
Nov 19 '05 #7
re:
I guess we're gluttons for punishment.


Nah.

You're only laboring under the mistaken notion that
server OS's should be as cheaply priced as client OS's.

If you want a server OS, pay for it.
Otherwise, don't complain about client OS capabilities.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"darrel" <no*****@hotmail.com> wrote in message
news:uZ**************@TK2MSFTNGP14.phx.gbl...
If you're running Windows Server 2003, you can set up as many web sites as
you want. On a Windows XP Pro box, you can set up only one. But you can

set
up as many separate web applications in that site as you need.


It boggles the mind that MS would purposely annoy the very developers that
keep the .net thing going...

I guess we're gluttons for punishment.

-Darrel

Nov 19 '05 #8
> You're only laboring under the mistaken notion that
server OS's should be as cheaply priced as client OS's.
My Mac running OS8 could run multiple web sites. There's nothing special
about it. It's just MS crippling for the sake of crippling so they can
sucker more IT departments into increased upgrade/licensing fees.
If you want a server OS, pay for it.
Or get one of the many free ones, or OSX. Or...
Otherwise, don't complain about client OS capabilities.


I will complain about MS pissing on the very developers that maintain MS's
status quo.

I don't think my next job will be in an MS shop, that's for sure. ;O)

-Darrel
Nov 19 '05 #9
re:
Or get one of the many free ones, or OSX. Or...
It's your choice.

re: I don't think my next job will be in an MS shop, that's for sure.


Sorry to see you'll miss out on a bunch of web server improvements,
only because you think that a client OS should be as cheap, or be
as equally-featured, as a server OS.

Go with the "free" ( which are not so "free" ).
You'll get what you pay for.

I wish you luck with your decision.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"darrel" <no*****@hotmail.com> wrote in message
news:Os**************@tk2msftngp13.phx.gbl...
You're only laboring under the mistaken notion that
server OS's should be as cheaply priced as client OS's.


My Mac running OS8 could run multiple web sites. There's nothing special
about it. It's just MS crippling for the sake of crippling so they can
sucker more IT departments into increased upgrade/licensing fees.
If you want a server OS, pay for it.


Or get one of the many free ones, or OSX. Or...
Otherwise, don't complain about client OS capabilities.


I will complain about MS pissing on the very developers that maintain MS's
status quo.

I don't think my next job will be in an MS shop, that's for sure. ;O)

-Darrel

Nov 19 '05 #10
this might get you close to what you need and there are other similar tools available like it via google.

http://www.codeproject.com/csharp/II...54#xx1142254xx
----------------------------------
I would much rather chew on tinfoil than try and code in C#.
Nov 19 '05 #11
sure, you just have to setup the name resolution in your hosts file.
localhost set set to 127.0.0.1 just add an entry :

site2.localhost 127.0.0.1

then in iismgr create a new site with the new hostname. you could also use
different port numbers instead of different host names.

note: only nt server supports creating more than 1 site per server, so be
sure your dev box is running nt server (2000 or 2003).
-- bruce (sqlwork.com)

"darrel" <no*****@hotmail.com> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time.
Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a
directory
within your root folder and somehow have it still obey root-relative
links?

-Darrel

Nov 19 '05 #12
> then in iismgr create a new site with the new hostname.

How? As far as I can tell, this is a feature that has been stripped out of
Win2k/XP.
note: only nt server supports creating more than 1 site per server, so be
sure your dev box is running nt server (2000 or 2003).


Oh, yea...exactly. So I guess the answer is to get IT to upgrade our
workstations to server OSes. I'll see if they bite. ;o)

-Darrel
Nov 19 '05 #13
> > Or get one of the many free ones, or OSX. Or...

It's your choice.
Unfortunately, it's not. I'm but one frustrated voice amongst a
long-entrenched MS-shop. :|

Maybe someday, though...there's some cracks forming as we're looking at all
the upgrade licenses coming through.
Sorry to see you'll miss out on a bunch of web server improvements,
only because you think that a client OS should be as cheap, or be
as equally-featured, as a server OS.
It's not an OS issue. The web server is just a program running on the OS.
This is just arbitrary slicing and dicing by MS. Its competitors all seem to
be able to run multiple sites in their servers...are you saying the richest
software company on the planet can't offer the same? ;o)
Go with the "free" ( which are not so "free" ).
You'll get what you pay for.
No, you really don't get what you pay for these days with software. In fact,
more often than not, you end up just paying for headaches. Lately, I'm
finding that if the decision is between an OS product and a commercial
project, you might as well pick the OS because half of the time, even if
it's 'free', it will have better peer support and more frequent upgrades
than the commercial option.

I like .net. It's a nice technology, but this silly IIS restriction is just
another strike against it.
I wish you luck with your decision.


Thanks!

-Darrel
Nov 19 '05 #14
Its not been stripped out - its just never been included in it.........

if your trying to develop subdomains/subsites on a workstation product,
which its not designed for by the manufacturer - why not just install
virtualPC and put a server image on it. Then you wont break your
workstation.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"darrel" <no*****@hotmail.com> wrote in message
news:us**************@TK2MSFTNGP09.phx.gbl...
then in iismgr create a new site with the new hostname.


How? As far as I can tell, this is a feature that has been stripped out of
Win2k/XP.
note: only nt server supports creating more than 1 site per server, so be
sure your dev box is running nt server (2000 or 2003).


Oh, yea...exactly. So I guess the answer is to get IT to upgrade our
workstations to server OSes. I'll see if they bite. ;o)

-Darrel

Nov 19 '05 #15
You just don't get it. Microsoft makes no secret whatsoever about what comes
bundled with the various OS's they produce and sell. Neither is Microsoft
under any "moral" obligation to sell any feature in any software package,
any more than any company selling any product has a "moral" or "ethical"
obligation to include any feature in any product they sell. You get what
Microsoft indicates you will get if you buy the package, and that is the
agreement you make by purchasing the package, just as with any other product
made by any other company. Microsoft advertises that you will get thus and
such when you buy thus and such a product. You agree to buy the product for
the price that Microsoft is selling the product for. In other words, "you
get what you pay for."

It would be just as logical, by your argument, to complain that a cheaper
model of an automobile doesn't include Cruise Control. Yet, the automobile
company makes no claim that it will include Cruise Control. Of course, if
the company made both versions of the automobile the same, why would anyone
buy the more expensive one? Why would they need to make 2 versions? And why
would they cost 2 different prices?

You claim to be a programmer, yet your argument lacks logic, and when
confronted with logic, you bullishly defend your illogical position. For a
programmer, the only thing worse than making a logical mistake, is defending
the illogical mistake, and not fixing it. This leads to bad software.

It is illogical to dislike Microsoft without logical reason. It is also
illogical to maintain that you "really don't get what you pay for these days
with software. In fact more often than not, you end up just paying for
headaches." As I have pointed out, you get exactly what you pay for when
buying software (at least from reputable companies like Microsoft). As for
"headaches," that is simply part of the programmer's landscape. Software is
written by humans, quite a few of them as illogical as you are. And the
complexity of software and computing technology makes it difficult to keep
up with. If you were not aware of these environmental factors when you
decided to become a developer, hopefully you are now.

If you think that the grass is greener on the "non-Microsoft" side of the
fence, you're in good company. Perhaps a stint there would help you figure
out what you really want to do with your life. Of course, there are 2 ways
to obtain wisdom: by experience, and by listening to those with experience.
The first way is the more painful of the two, but they work equally well.
Take your pick.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
I'd rather be a hammer than a nail.

"darrel" <no*****@hotmail.com> wrote in message
news:%2******************@TK2MSFTNGP14.phx.gbl...
> Or get one of the many free ones, or OSX. Or...


It's your choice.


Unfortunately, it's not. I'm but one frustrated voice amongst a
long-entrenched MS-shop. :|

Maybe someday, though...there's some cracks forming as we're looking at
all
the upgrade licenses coming through.
Sorry to see you'll miss out on a bunch of web server improvements,
only because you think that a client OS should be as cheap, or be
as equally-featured, as a server OS.


It's not an OS issue. The web server is just a program running on the OS.
This is just arbitrary slicing and dicing by MS. Its competitors all seem
to
be able to run multiple sites in their servers...are you saying the
richest
software company on the planet can't offer the same? ;o)
Go with the "free" ( which are not so "free" ).
You'll get what you pay for.


No, you really don't get what you pay for these days with software. In
fact,
more often than not, you end up just paying for headaches. Lately, I'm
finding that if the decision is between an OS product and a commercial
project, you might as well pick the OS because half of the time, even if
it's 'free', it will have better peer support and more frequent upgrades
than the commercial option.

I like .net. It's a nice technology, but this silly IIS restriction is
just
another strike against it.
I wish you luck with your decision.


Thanks!

-Darrel

Nov 19 '05 #16
Take a look at my article
http://www.codeproject.com/aspnet/Multisite.asp

I think it's exactly what you are looking for.

George

"darrel" <no*****@hotmail.com> wrote in message news:%2******************@TK2MSFTNGP12.phx.gbl...
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time. Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a directory
within your root folder and somehow have it still obey root-relative links?

-Darrel
Nov 19 '05 #17
> this might get you close to what you need and there are other similar
tools available like it via google.

http://www.codeproject.com/csharp/II...54#xx1142254xx

Jon...EXCELLENT! That is a *slick* little app. I can't run both sites at
once, but it makes switching between them a snap. NICE!

-Darrel
Nov 19 '05 #18
> Its not been stripped out - its just never been included in it.........

That might be an issue of semantics. From what I've been reading, the
capabilities are there in the form of various config files, but the
interface to do this via IIS Manager isn't there.
if your trying to develop subdomains/subsites on a workstation product,
which its not designed for by the manufacturer - why not just install
virtualPC and put a server image on it.


It's really an issue of comparison. When every other modern OS/web server on
the planet can do this out of the box, but MS's can't, one gets the feeling
that MS is just holding back for more cash. ;o)

More power to them, I suppose. ;o)

VPC would be nice, though.

-Darrel
Nov 19 '05 #19
> You just don't get it. Microsoft makes no secret whatsoever about what
comes
bundled with the various OS's they produce and sell. Neither is Microsoft
under any "moral" obligation to sell any feature in any software package
You'd think MS would want to compete in the marketplace based on features
and quality of product, though. Of course, if they make money doing it the
old MS way, I can't knock them for it. Business is business.
It would be just as logical, by your argument, to complain that a cheaper
model of an automobile doesn't include Cruise Control.
No. The analogy would be if the 50k Cadillac Escalade required an upgrade to
use the reverse gear while the Honda Civic had it built in at 10K. ;o)

Granted, they'd still be selling 50K Cadillacs...
You claim to be a programmer
I program. Not sure if I'd call myself a programmer.
yet your argument lacks logic, and when
confronted with logic, you bullishly defend your illogical position. For a
programmer, the only thing worse than making a logical mistake, is defending the illogical mistake, and not fixing it. This leads to bad software.
Letting the marketing department dictate your companies product lines also
leads to bad software (yes, I'm pointing at you Microsoft. ;o)
It is illogical to dislike Microsoft without logical reason.
They don't put quality of product at the forefront of their mission. Any
company that does that begins to get on my nerves. MS isn't alone in this,
many of the large software companies do this...namely anyone selling
'enterprise' software.

MS does some great things, they also do some infuriating things. I praise
their great things but don't defend their infuriating things. Besides, they
can take some criticism.
It is also
illogical to maintain that you "really don't get what you pay for these days with software.
It's completely logical when you work in an organization that has spent
millions on some truly horrendous enterprise software products. It's
completely logical when you spend a year researching content management
tools and getting a pretty good look at the bloated, craptastic products out
there. It's completely logical when you find an OS product that does the
same things, but costs a fraction, and has a much livelier P2P support
group.

Now, I'm not saying commercial software = crap and OS software = great. I'm
saying price is not usually an indicator of quality of product in the
software world these days. There's truly crappy expensive software just as
there are truly amazing mid-priced software products.
As I have pointed out, you get exactly what you pay for when
buying software (at least from reputable companies like Microsoft).
We bought IIS, VS.net licenses, server licenses, workstation licenses, yet
the richest software company on the planet can't get VS.net to stop spitting
out invalid HTML nor their browser to support it. It's the simple things
like that discredot the 'reputable' comment a bit. ;o)
As for
"headaches," that is simply part of the programmer's landscape.
True, true.
If you think that the grass is greener on the "non-Microsoft" side of the
fence, you're in good company.


Yea, that was kind of my point. ;o)

It's not necessarily greener, but there's more people playing on that lawn,
it seems. ;o)

-Darrel
Nov 19 '05 #20
> I think it's exactly what you are looking for.

EXCELLENT! George, I believe that is exactly what I was looking for. Thanks!

-Darrel
Nov 19 '05 #21
If Microsoft had provided that, the complaint would be that
it's encroaching on developer turf and creating a monopoly.

;-)

The name of the game is :

"You get beat up if you do,
and you get beat up if you don't."

heh, heh...

I understand your pov, though... :-)

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"darrel" <no*****@hotmail.com> wrote in message
news:uT**************@tk2msftngp13.phx.gbl...
I think it's exactly what you are looking for.


EXCELLENT! George, I believe that is exactly what I was looking for. Thanks!

-Darrel

Nov 19 '05 #22
Darrel,

I am not quite understanding why it would be so difficult to put the
original site in http://localhost/myOldSite, and then develop your new site
in http://localhost/myNewSite. THis way, you could maintain the old site,
while revamping it in the new site.

"darrel" wrote:
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time. Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a directory
within your root folder and somehow have it still obey root-relative links?

-Darrel

Nov 19 '05 #23
Hi, Lucas.

He's developing in Windows XP, which has that limitation.
IIS 5.1 only allows one root website.

For a workaround, see :

http://www.codinghorror.com/blog/archives/000329.html

While you're right in that he could use
http://localhost/myOldSite and http://localhost/myNewSite
that makes it difficult to maintain references to images/controls/etc,
if the objective is to later publish to a root directory at a production server.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Lucas Curley" <Lu*********@discussions.microsoft.com> wrote in message
news:13**********************************@microsof t.com...
Darrel,

I am not quite understanding why it would be so difficult to put the
original site in http://localhost/myOldSite, and then develop your new site
in http://localhost/myNewSite. THis way, you could maintain the old site,
while revamping it in the new site.

"darrel" wrote:
I'm trying to figure out if I can run to localhost sites at once. Such as
'localhost' and 'site2.localhost'.

It appears I can set both of them up, but not run them at the same time. Is
that true? If so, what was MS thinking? Ugh.

Alternatively, is there a practical way to have a site run from a directory
within your root folder and somehow have it still obey root-relative links?

-Darrel

Nov 19 '05 #24

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

Similar topics

6
by: Rich | last post by:
Hi. Whenever I connect to a mysql database, I always connect to 'localhost'. Does that mean that you can connect to a database on another host? If you can, does that mean that I could use the same...
1
by: developerqs | last post by:
I have developed an engine that I use for all of my clients web sites. They are all the same type of site, some use features A, B, & C. Some web sites just use features A & B. My issue is that...
3
by: Simon K | last post by:
Hi I am working with sessions to check if the user is logged in. This usually works fine and all my .asp-pages checks if: <% session.Contents("loggedIn")=True %> But this only works on my...
7
by: Christoph Lutz | last post by:
Hi, I have got a scenario where an asp script needs to request via xmlhttp a file sitting on the same server. The code all works find on my local machine. However, on the hosting server, it does...
6
by: Brad | last post by:
I have a win2003 server workstation with multiple webs, each web has it's own ip address. In VS2005, if I select to open an existing web site, select Local IIS, the dialog correctly displays a...
9
by: darthghandi | last post by:
I am trying to create a server application using asynchronous sockets. I run into a problem when I try to connect to my server using a non-.net program. I can establish the connection, and send...
9
by: pbd22 | last post by:
Hi. This is just a disaster management question. I am using XMLHTTP for the dynamic loading of content in a very crucial area of my web site. Same as an IFrame, but using XMLHTTP and a DIV. I...
1
by: maflatoun | last post by:
Hi all, I've been doing ASP.NET C# for 4 years now and that's around the same # of years I've been away from PHP. But now I'm looking at this PHP position that looks really interesting to me....
7
by: pek | last post by:
OK, I've been having this problem for quite some time but never until now I really needed a solution. I have never thought of a work around, so I really need your help. Sorry if this has been...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.