Is there a way to draw lines on a ASP.Net webform?
My goal is to visually represent angles. The angles don’t have to be exact, but somewhat dynamic.
Is there a .Net control that can do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
.NET Web Controls, at least the ones shipped with VS are not capable of doing this. In general you can do this on HTML5 + Javascript or some other third party control.
Another alternative (one that I dislike, BTW) would be to dynamically generate images and streaming them to the browser. But again, that doesn’t seem the best option to me.