473,394 Members | 1,702 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

C# web graphics ?

Is it possible to make a sprite fly around in a c# web application ?

How much graphics cappabilities are the with C# and web, I know that some of
my friends have made many nice graphics demos with java and just wondered if
C# can do anything at all ?

Does anyone have a url to a page that shows just a simple thing ?

Jack

--------------------------------------------------------------------------------
Jeg beskyttes af den gratis SPAMfighter til privatbrugere.
Den har indtil videre sparet mig for at få 15615 spam-mails
Betalende brugere får ikke denne besked i deres e-mails.
Hent en gratis SPAMfighter her.
Oct 12 '06 #1
6 4690
Hello Jack Nielsen" no_spam,

Currently in ASP.net 2.0 it's possible only via JavaScript or with Flash

To get really dynamic graphics in web u need to use Windows Presentaion Framework
(.NET 3.0)

JIs it possible to make a sprite fly around in a c# web application ?
J>
JHow much graphics cappabilities are the with C# and web, I know that
Jsome of my friends have made many nice graphics demos with java and
Jjust wondered if C# can do anything at all ?
J>
JDoes anyone have a url to a page that shows just a simple thing ?
J>
JJack
J>
---
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Oct 12 '06 #2
Hi Jack,

http://www.vgdotnet.com/custom_ui.shtml

Dials demo in IE, fourth large image from the top of the page.

Regards,
Frank Hileman

check out VG.net: http://www.vgdotnet.com
Animated vector graphics system
Integrated Visual Studio graphics editor
"Jack Nielsen" <no_spam ja**********@get2net.dkwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
Is it possible to make a sprite fly around in a c# web application ?

How much graphics cappabilities are the with C# and web, I know that some
of my friends have made many nice graphics demos with java and just
wondered if C# can do anything at all ?

Does anyone have a url to a page that shows just a simple thing ?

Jack

Oct 12 '06 #3
It's possible to do that sort of thing in a browser with DHTML, but the
best current technology that sort of thing on the web is Flash.
However, Microsoft do have a competing technology in the pipeline with
WPF (Windows Presentation Foundation) and XAML (Extensible Application
Markup Language).

Check out Microsoft Expression Interactive Designer for more info:
http://www.microsoft.com/products/ex...tive_designer/

Jack Nielsen wrote:
Is it possible to make a sprite fly around in a c# web application ?

How much graphics cappabilities are the with C# and web, I know that someof
my friends have made many nice graphics demos with java and just wonderedif
C# can do anything at all ?

Does anyone have a url to a page that shows just a simple thing ?

Jack

--------------------------------------------------------------------------------
Jeg beskyttes af den gratis SPAMfighter til privatbrugere.
Den har indtil videre sparet mig for at få 15615 spam-mails
Betalende brugere får ikke denne besked i deres e-mails.
Hent en gratis SPAMfighter her.
Oct 12 '06 #4
Hi,

Michael Nemtsev wrote:
Hello Jack Nielsen" no_spam,

Currently in ASP.net 2.0 it's possible only via JavaScript or with Flash
That's a really limited list ;-)

You can use any plug-in in ASP.NET just like you would in HTML pages.
That opens the possibility to use: Java (applets), Flash, SVG, VML (to
cite only a few).

If you don't want a plug-in to run on the client, that limits you to
JavaScript and CSS, commonly called DHTML.

To get really dynamic graphics in web u need to use Windows Presentaion
Framework (.NET 3.0)
That's actually Windows Presentation Foundation (ex Avalon), and it has
nothing to do with ASP.NET. It will run in IE only, using a presentation
host. It will be possible to include WPF applications (actually named
XBAP or XAML Browser Applications when running in the browser) in
IFRAMES to make them run in a HTML framework, but without communication
with the HTML unfortunately (at least in V1).

Later, a technology called WPF/E (everywhere) should be released, using
a plug-in too.

Note that WPF won't necessarily be more dynamic than Flash, but it
should allow 3D effect, Bitmap effects, etc...

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Oct 12 '06 #5
You have to remember that C# is executing SERVER side in any ASP.NET
system. The onyl code that is actuall executing on a browser client is
HTML, DTHML and Javascript (or Flash, or any other codebase that can
execute within a client's browser framework).

This is why a JAVA program can do the local graphic, as the langauge is
capable of executing on the client as a local program (albeit within the
relevant "sandbox" that the Java JIT creates).

The C# equivalent to this is to build a "smart client application" - one
which is deployed to a website, and when the client requests it,
downloads one or more parts of itself to run locally - as locally
executing windows Forms app (with all the graphics bells and whistles
that allows) but under special security conditions. There are all manner
of issues from availability of the .NET framework locally to security
implications for your code if it needs to use local resources like files
or printers which you will need to research.

<no_spam ja**********@get2net.dksays...
Is it possible to make a sprite fly around in a c# web application ?

How much graphics cappabilities are the with C# and web, I know that some of
my friends have made many nice graphics demos with java and just wondered if
C# can do anything at all ?

Does anyone have a url to a page that shows just a simple thing ?

Jack

--------------------------------------------------------------------------------
Jeg beskyttes af den gratis SPAMfighter til privatbrugere.
Den har indtil videre sparet mig for at få 15615 spam-mails
Betalende brugere får ikke denne besked i deres e-mails.
Hent en gratis SPAMfighter her.
Oct 13 '06 #6
Hi,

Peter Fallon wrote:
You have to remember that C# is executing SERVER side in any ASP.NET
system. The onyl code that is actuall executing on a browser client is
HTML, DTHML and Javascript (or Flash, or any other codebase that can
execute within a client's browser framework).
That used to be true, but WPF executes on the client. The client needs
to have .NET 3.0 installed (or in WPF/E (not out yet)) a subset of the
framework, installed as a plugin).

See other posts about this in the same thread.

Greetings,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Oct 13 '06 #7

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

Similar topics

2
by: JBiagio | last post by:
Hello All, I am attempting to learn a bit about the GDI+ transforms and charting data and I feel like I'm getting a handle on how the transforms work. My chart object has a large "canvas" bitmap...
12
by: Sanjay | last post by:
hi, We are currently porting our project from VB6 to VB .NET. Earlier we used to make scale transformations on objects like pictureBox , forms etc.Now Such transformations are made on the...
2
by: John Bailo | last post by:
I am walking through some of the very first sample code from the book "Beginning .NET Game Programming" from Apress. I identify his sample code with //SC This code puzzles me: Graphics graph...
14
by: Pmb | last post by:
At the moment I'm using Borland's C++ (http://www.borland.com/products/downloads/download_cbuilder.html#) I want to be able to take an array of points and plot them on the screen. Is there a way...
5
by: Charles A. Lackman | last post by:
Hello, I have created a complete PrintDocument and need to create an image from it. How is this done? e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality...
6
by: Chris Dunaway | last post by:
The method for printing documents in .Net can be confusing, especially for newer users. I would like to create a way to simplify this process. My idea would be implemented using a PrintDocument...
12
by: Xah Lee | last post by:
Of Interest: Introduction to 3D Graphics Programing http://xahlee.org/3d/index.html Currently, this introduction introduces you to the graphics format of Mathematica, and two Java Applet...
6
by: active | last post by:
I have an image and a graphics object created (FromImage) from that image. I need to create a new image and create a new graphics object from the new image. I want the new graphics object have...
9
by: DaveL | last post by:
hello I have a Bit map 1367 wide 32 high this bitmap contains like 40 separate Images 32x32 I tell it the id*32 to get the approiate Image from the source Bitmap When i CreateGraphics()...
8
by: Abhiraj Chauhan | last post by:
I need someone to make an example of how to create a graphics window in VB.net 2008. I understand the basics of how to draw a rectangle and lines etc. What I need is an example of how to make a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...

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.