how to use opengl in web application(control/form)?

Started by
2 comments, last by taby 16 years, 10 months ago
I know that csgl and tao.opengl can been used in c#,but the OpenGLControl and SimpleOpenGLControl are derived from windows form. Now i want to use OpenGL and draw 3D scene on button or panel in webcontrol,how to do it? Thanks your help.
Advertisement
You'll probably have to write a browser plugin for that, or at the very least a Java Applet and use Java 3D. For security reasons, you're not allowed to access such low level libraries directly from a browser in a client machine.
Kwizatz is right. Remember that using C# for web pages (ASP.NET) is server side, not client side.

"I can't believe I'm defending logic to a turing machine." - Kent Woolworth [Other Space]

I can confirm that GDI and OpenGL can be used within a Mozilla MIME plugin. I also agree that this is probably the only way to do something like this if you want to use C++.

This topic is closed to new replies.

Advertisement