i ve implemented shortest path algorithm on 1 city in asp.net and now i wanted to 开发者_如何学Goshow the lines between the points selected in shortest path.how it can be done using asp.net?
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.
精彩评论