473,785 Members | 2,476 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web question

If this is not the right newsgroup for this question please direct me.

I have been using VB.net for stand alone and client/server kinds of things
but am beginning to explore its use for web applications. I need to ask a
couple of real basic questions.

My understanding is that if you are going to write an application for the
web using VS.net you need to have a web server. I suppose what is meant by
this is that you need to have a seperate machine (PC) connected to the web
who's sole purpose is to get and send data relative to your applicaiton.
Sort of a referee. I suppose this is where your database would reside if,
for example, you have a web app that provides data to or retreives data from
a user.

I will start with a real basic question. If I wanted to create a web
application that did not involve the exchange of data to a database would I
still need a seperate machine? I ask this question because, for example, I
have a web site right now that was created with FrontPage 2000. It does not
get any information from the user. I mean it stores no data in a database.
It just provide information about certain services I offer. Just wondering
if I could recreate this rather simple application using VB.net without
having to buy a seperate machine to act as a web server. I am thinking
that if I can, perhaps this would allow me to at least get into the game and
allow me to have one tool for creating my simply web app instead of VS and
FrontPage.

Anyone?

P.S. My service provider provides what are called FrontPage extensions and
all I do is create the app in FrontPage and then transfer it to their
server. Is there something similar to this I can do with VS. Would I be
able to do this, for example, if the ISP had the network framework on their
machine?

Nov 20 '05 #1
13 1179
newsgroup: microsoft.publi c.dotnet.framew ork.aspnet

you don't need another machine (depending on the OS you are running)
just install IIS on your machine
and if you need a database, also just install that on your machine

"Woody Splawn" <wo***@splawns. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
If this is not the right newsgroup for this question please direct me.

I have been using VB.net for stand alone and client/server kinds of things
but am beginning to explore its use for web applications. I need to ask a
couple of real basic questions.

My understanding is that if you are going to write an application for the
web using VS.net you need to have a web server. I suppose what is meant by
this is that you need to have a seperate machine (PC) connected to the web
who's sole purpose is to get and send data relative to your applicaiton.
Sort of a referee. I suppose this is where your database would reside if,
for example, you have a web app that provides data to or retreives data from a user.

I will start with a real basic question. If I wanted to create a web
application that did not involve the exchange of data to a database would I still need a seperate machine? I ask this question because, for example, I have a web site right now that was created with FrontPage 2000. It does not get any information from the user. I mean it stores no data in a database. It just provide information about certain services I offer. Just wondering if I could recreate this rather simple application using VB.net without
having to buy a seperate machine to act as a web server. I am thinking
that if I can, perhaps this would allow me to at least get into the game and allow me to have one tool for creating my simply web app instead of VS and
FrontPage.

Anyone?

P.S. My service provider provides what are called FrontPage extensions and all I do is create the app in FrontPage and then transfer it to their
server. Is there something similar to this I can do with VS. Would I be
able to do this, for example, if the ISP had the network framework on their machine?


Nov 20 '05 #2
First off, here is a better place for this question:
microsoft.publi c.dotnet.framew ork.aspnet

But I will try to get you started here....

A web server is a machine that is running web server software. In a
Microsoft world, that means Internet Information Server (IIS), which is part
of Windows XP Professional Edition but not included with XP Home Edition.

This web server can have other functions as well. It could also be a
database server (where the actual database resides), it could be a file
server, an FTP server, a mail server and so on. Or, it could just be a
dedicated web server.

When you develop your FrontPage web pages on your machine, you are not
required to have a web server installed on your machine or even one that you
can connect to on a different machine. FrontPage essentially allows you to
create "Disk Based" (no web server) or "Server Based" (with web server)
webs. It sounds like you've been building disk based webs. Those FrontPage
Server Extensions you mentioned allow FrontPage to give you features that
normally require server programming without you having to do the work. If
you want to take advantage of the features that the server extensions
provide, then you are required to have a web server. If you don't have a
web server, then you can still use FP, but not those features.

Now to VS.NET and ASP.NET....

ASP.NET is all about web server-side programming, period! You WILL NEED a
web server in order to even get started in ASP.NET. VS.NET will ask you
what web server you wish to place your "project" on before you even begin.

If all you are doing is providing "static" (pages that don't change) content
via .htm files on your web site, stick with FrontPage. If you need to get
into things that .htm files (client side) can't do (database programming),
then you need to move up to a server side programming platform (ASP.NET).

HTH
"Woody Splawn" <wo***@splawns. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
If this is not the right newsgroup for this question please direct me.

I have been using VB.net for stand alone and client/server kinds of things
but am beginning to explore its use for web applications. I need to ask a
couple of real basic questions.

My understanding is that if you are going to write an application for the
web using VS.net you need to have a web server. I suppose what is meant by
this is that you need to have a seperate machine (PC) connected to the web
who's sole purpose is to get and send data relative to your applicaiton.
Sort of a referee. I suppose this is where your database would reside if,
for example, you have a web app that provides data to or retreives data from a user.

I will start with a real basic question. If I wanted to create a web
application that did not involve the exchange of data to a database would I still need a seperate machine? I ask this question because, for example, I have a web site right now that was created with FrontPage 2000. It does not get any information from the user. I mean it stores no data in a database. It just provide information about certain services I offer. Just wondering if I could recreate this rather simple application using VB.net without
having to buy a seperate machine to act as a web server. I am thinking
that if I can, perhaps this would allow me to at least get into the game and allow me to have one tool for creating my simply web app instead of VS and
FrontPage.

Anyone?

P.S. My service provider provides what are called FrontPage extensions and all I do is create the app in FrontPage and then transfer it to their
server. Is there something similar to this I can do with VS. Would I be
able to do this, for example, if the ISP had the network framework on their machine?


Nov 20 '05 #3
Cor
Hi Woody,

Totaly wrong group, so let me answer it. :-))
All answers between the lines
I have been using VB.net for stand alone and client/server kinds of things
but am beginning to explore its use for web applications. I need to ask a
couple of real basic questions.

My understanding is that if you are going to write an application for the
web using VS.net you need to have a web server. I suppose what is meant by
this is that you need to have a seperate machine (PC) connected to the web
who's sole purpose is to get and send data relative to your applicaiton.
Sort of a referee. I suppose this is where your database would reside if,
for example, you have a web app that provides data to or retreives data from a user.
Yes you need to have a webserver and that needs to be connected to the
Internet. And direct with a good firewall between it. And than if you have
to buy it direct Server 2003 because that has IIS6 and ASP.net standard.

The database can be on the same computer, is the most easiest but not
necassery.
I will start with a real basic question. If I wanted to create a web
application that did not involve the exchange of data to a database would I still need a seperate machine? I ask this question because, for example, I have a web site right now that was created with FrontPage 2000. It does not get any information from the user. I mean it stores no data in a database.

I certainly would advice that a website needs to be 24 hours 7 days
reachable by the users, otherwise the tell that it is for ever down. And
stop using it. When you using a computer with other purposes than gives a
restart even trouble on the Internet.
It just provide information about certain services I offer. Just wondering if I could recreate this rather simple application using VB.net without
having to buy a seperate machine to act as a web server. I am thinking
that if I can, perhaps this would allow me to at least get into the game and allow me to have one tool for creating my simply web app instead of VS and
FrontPage.
If you now have running a website on your own webserver in house with
Frontpage you can use the same server, for aspnet you have to install the
Net framework if it is not Server 2003. And I would certainly not start with
buying a new one, only that firewall that you need is something you need
forever with Internet.
P.S. My service provider provides what are called FrontPage extensions and all I do is create the app in FrontPage and then transfer it to their
server. Is there something similar to this I can do with VS. Would I be
able to do this, for example, if the ISP had the network framework on their machine?


No this is different because he has not the database. And mostly it gives a
lot of trouble, probably he has a special version of frontpage (there are
small versions) that does not fit and he needs to have the framework on the
server.

But it is possible, to do to keep low cost connections to make special pages
for database that you redirect to your own server and the let say more
static webpages keeping with your provider. But for that you need to be
expirienced.

However you need (in a simpel situation) your own server and Internet
connection and again the firewall.

But my first advice is that if you have a XP pro or 2000 pro.

Try it first and use for that the VB recource kit

http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing it

http://msdn.microsoft.com/vbasic/vbr...q/#installvdir

And try the websamples (necassery is that IIS is installed).

Some samples have problems because the ' is a wrong character and gives
errors.

I hope this helps,

Cor
Nov 20 '05 #4
> HTH

It does help - a lot.

Quesiton:

If I have a machine to act as a web server, how fast does it need to be? I
have a PIII 750 that I might be able to use. It would be used for testing
purposes. Nothing real fancy at first. Would it be fast enough and would it
work if it had Windows XP Pro on it or do I need some other special web
server software?

Would this be sufficient to get me started or do I need something with a lot
of horse power right up front?
Nov 20 '05 #5
This is fine to do local development and testing. As I stated earlier, XP
Pro. comes with Internet Information Server (IIS), so you would not need any
additional software (beyond the Visual Studio.NET that is).
"Woody Splawn" <wo***@splawns. com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
HTH
It does help - a lot.

Quesiton:

If I have a machine to act as a web server, how fast does it need to be?

I have a PIII 750 that I might be able to use. It would be used for testing
purposes. Nothing real fancy at first. Would it be fast enough and would it work if it had Windows XP Pro on it or do I need some other special web
server software?

Would this be sufficient to get me started or do I need something with a lot of horse power right up front?

Nov 20 '05 #6
> Yes you need to have a webserver and that needs to be connected to the
Internet. And direct with a good firewall between it. And than if you have
to buy it direct Server 2003 because that has IIS6 and ASP.net standard.
You don't technically need to have an Internet connection to build and test
a site locally. :)
You also don't need to buy a server product. XP Pro. will do fine (again
for local testing).
P.S. My service provider provides what are called FrontPage extensions

and
all I do is create the app in FrontPage and then transfer it to their
server. Is there something similar to this I can do with VS. Would I be able to do this, for example, if the ISP had the network framework on

their
machine?


No this is different because he has not the database. And mostly it gives

a lot of trouble, probably he has a special version of frontpage (there are
small versions) that does not fit and he needs to have the framework on the server.


Uhm yes. The process of working locally and then publishing the files to
the live host is certainly supported in .NET (that's how I work with my
site). Also, most host provide database support either by allowing you to
upload your own client database (like Access) or by providing MySQL or SQL
Server support, so database connectivity is not a problem.

There are not "special" or "small" versions of FrontPage. There are
different versions of the server extensions.
Nov 20 '05 #7
Woody,

Just my 2cents worth....

It seems to be less of a headache to run IIS on the same machine as you
develop on, but your SQL Server can easily be on another networked machine
and is recommended since SQL Server eats up some processor time with its
services and does use memory. MSDE is free if you need it.

Once you get the app ready, get an ISP that supports it like
www.discountasp.net and that offers SQL Server as well.

Then you just transfer it.

HTH,

Shane
"Woody Splawn" <wo***@splawns. com> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
HTH
It does help - a lot.

Quesiton:

If I have a machine to act as a web server, how fast does it need to be?

I have a PIII 750 that I might be able to use. It would be used for testing
purposes. Nothing real fancy at first. Would it be fast enough and would it work if it had Windows XP Pro on it or do I need some other special web
server software?

Would this be sufficient to get me started or do I need something with a lot of horse power right up front?

Nov 20 '05 #8
Cor
Hi Scott,
You don't technically need to have an Internet connection to build and test a site locally. :)
You also don't need to buy a server product. XP Pro. will do fine (again
for local testing).
That is what I told I even supported the link for the VB resource pack to
get a fast start.
There are not "special" or "small" versions of FrontPage. There are
different versions of the server extensions.


This Frontpage was in the context of the sentence where we where talking
about the server extentions, here it is placed outside the context. What
would a provider do with Frontpage to host a site.

Although there are different versions of Frontpage, almost exactly in the
same version sequence as Outlook (even a comparable version with Outlook
Express).

Just a correction to place it in the right context

Cor
Nov 20 '05 #9

"Cor" <no*@non.com> wrote in message
news:e4******** ******@TK2MSFTN GP10.phx.gbl...
Hi Scott,
You don't technically need to have an Internet connection to build and test
a site locally. :)
You also don't need to buy a server product. XP Pro. will do fine (again for local testing).


That is what I told I even supported the link for the VB resource pack to
get a fast start.


But you did write:

"Yes you need to have a webserver and that needs to be connected to the
Internet."

So, I wanted to clarify it.
There are not "special" or "small" versions of FrontPage. There are
different versions of the server extensions.


This Frontpage was in the context of the sentence where we where talking
about the server extentions, here it is placed outside the context. What
would a provider do with Frontpage to host a site.


Not sure I understand that one. Using the server extensions does not mean
you have a special version of FP, nor are there "small" versions of FP,
which you wrote.

Just wanted to clarify that too! :)
Nov 20 '05 #10

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

Similar topics

1
3099
by: Mohammed Mazid | last post by:
Can anyone please help me on how to move to the next and previous question? Here is a snippet of my code: Private Sub cmdNext_Click() End Sub Private Sub cmdPrevious_Click() showrecord
3
5043
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
2665
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask it differently. FOUR QUESTIONS: The background: I got three (3) files
3
3091
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table before rowID answID qryrow questionID datafield 1591 12 06e 06e 06e question 1593 12 06f 06f 06f question 1594 12 answer to the question 06f
10
3441
by: glenn | last post by:
I am use to programming in php and the way session and post vars are past from fields on one page through to the post page automatically where I can get to their values easily to write to a database or continue to process on to the next page. I am now trying to learn ASP to see if we can replace some of our applications that were written in php with an ASP alternative. However, after doing many searches on google and reading a couple...
10
3738
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server Error in '/QuickStartv20' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file
53
4095
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
4801
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
4284
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from less to more for example). I have a question object that has two properties that contain the collections Options and Ratings. now I want this kind of layout: --- Rating1 Rating2 Rating3 Option 1 () () ...
3
2551
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div class="not-required-question"><p>Question Text</p><input /></div>
0
10341
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10155
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10095
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7502
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6741
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5383
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
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 we have to send another system
2
3656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.