Visual Basic .NET 2003 - Web Based Games

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the whole group of .NET 2003 platforms sitting here from a dream I
have of building some simple web based games (much like on msn zone)

Any guidance as to where I start and what I need to learn to make even the
simplest clone of checkers or other simple games?

I'm completely lost in the ocean on where to start here

thanks for the help
 
Hi,

When you say web-based are you talking about games that run through a
browser? Or multi-player online games with Windows Forms applications?
Ken.
 
Web-based as in like when you go into msn zone to play chess or card games
with someone and its run in the browser?
 
Hi,

MSN's games were written using MacroMedia's Flash. That is by far the most
popular tool in use today for web-based games. Yahoo has written a bunch of
games using ActiveX, if you go that route you'll want to use VB6. You can
also create games as Java Applets, for that I would recommend JBuilder by
Borland.

While I think .Net will be *huge* game-wise, it's time hasn't come yet. You
can run a Windows Form app through a browser but the client needs to have
the .Net Framework installed and the security settings setup right. Maybe
..Net 2.0 will make running Windows Form apps through a browser more popular
but I have a feeling it will be years before everything is in place. 1) A
large .Net install base. 2) An easy to use security module for end-users.
3) A widely accepted methodology for how these technologies will work and an
IDE to utilize them efficiently.

The bottom line is that VS.Net 2003 really isn't the environment you need to
create web-based games. Good luck! Ken.
 
In addition to Ken just a little thing.

As Ken wrote Net is not the platform for games that you want.

The reason is that any action not based on HTML (or build in javascript) as
with the controls needs a PostBack. That can cost in a game as you want too
much time.

I hope this add something too the nice answer from Ken.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top