C# Web Game

Is there a way using .NET to make a web game ASPX that has scrolling game screen or is ActiveX the only way in Visual Studio?
[125 byte] By [JaredJ] at [2008-3-1]
# 1

In the .NET world ActiveX is for the most part dead (even though we can talk to it, we try not to).

Instead one possible option (that only works in IE) is to host a .NET user control on a web page and use it through IE.

BrendanGrant at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 2
Is there a option that would do something similiar to games made in flash or java using C# .NET?
JaredJ at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 3
Not today however using some of the WPF methods from the 3.0 .NET Framework or even the WPF/E push it will be possible... sadly those technologies are not quite done and released yet.
BrendanGrant at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 4
So which is better to accomplish this? Java or Flash?
JaredJ at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 5
I'm afraid that I cannot give any kind of opinion on it as I have very little experiance with either.
BrendanGrant at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...
# 6
By "Scrolling game screen", I assume you mean something like http://maps.google.com/ where you can just slide the maps left-or-right, up-or-down.

Google accomplishes this without ActiveX, Flash, or Java.

It done by setting up a converstaion via XML between a Javascript routine on the browser, and the webserver. The technique is known as "AJAX" (Asyncronous Javascript And Xml).

Many open-source .Net libraries to handle Ajax are becoming available now. Microsoft's own is called "Atlas" (http://atlas.asp.net)

JamesCurran at 2007-8-30 > top of Msdn Tech,Feedback for forums and MSDN websites,Off-Topic Posts (Do Not Post Here)...