divya
divya

Reputation: 1

drawing lines using asp.net

i ve implemented shortest path algorithm on 1 city in asp.net and now i wanted to show the lines between the points selected in shortest path.how it can be done using asp.net?

Upvotes: 0

Views: 125

Answers (1)

Nicolas78
Nicolas78

Reputation: 5144

well there's two parts to this question: how do you realize your visualization in HTML, and then how do you ASP.NET to render the HTML that does that. so the first part is completely ASP.NET-independent. you could use javascript for the plotting - if you google for "plotting javascript", you find a bunch of libraries. if this is what you want, write a static HTML page creating the desired output, then think about how you can create the corresponding commands programmatically.

Upvotes: 1

Related Questions