Draw shapes
-
Hi All, How would we draw an eclipse or square in asp.net? Do we have to import specific namespace or reference special dlls? Also, if we draw a square - how would we fill a value from previous page in this square? Thanks. vani
Where do you want to draw it? There is no user interface to draw on, as the user and the server normally are at completely different locations. The account used for running ASP.NET pages does not use a graphical user interface. --- b { font-weight: normal; }
-
Where do you want to draw it? There is no user interface to draw on, as the user and the server normally are at completely different locations. The account used for running ASP.NET pages does not use a graphical user interface. --- b { font-weight: normal; }
-
Hi All, How would we draw an eclipse or square in asp.net? Do we have to import specific namespace or reference special dlls? Also, if we draw a square - how would we fill a value from previous page in this square? Thanks. vani
-
I would like it to be pre-drawn on the aspx page itself, with certain dimensions. Also found out you have to import System.Drawing namespace. But most of the examples on Microsoft site use Windows forms, I want this on web form.
You can't draw graphics in that way on a web page. A web page is only html and anything that can be put in an html page. Sadly, vector graphics is something that is not widely supported by browsers. You can have a look att SVG or VML. --- b { font-weight: normal; }