ASP.net Website Management

I was wondering if anyone came up with an ASP.net server tag for an HTML5 canvas? I was thinking of something where I could declare paths, curves; etc. in aspx markup, and the control will provide js for this (possibly with support for browser detection and script emulation delivery for IE browsers.)

Maybe a good idea for a Codeplex project to run?

+4
source share
1 answer

I started an open source project that includes a canvas, but I was not sure which features I would like to include. As Ironfoot explains, it looks like the canvas was more designed for more benefit on the client side. I did capture captions using canvas, and the amount of Javascript was significant. The trick for me was to load it onto a modified surface. I am not sure how much this will be seen in the postback. If you are interested in contributing some features to the asp.net html canvas, check out my HTML5 ASP project .

+3
source

Source: https://habr.com/ru/post/1308706/


All Articles