asp.net - Imagemaps and Statelessness - is it possible? -


i created clickable tag cloud generator. tool generates nice image actual tag cloud, , make clickable , hover-able (interactive), tool (essentially method in class) returns html.

since image , html both generated in same action method, in mvc project, wondering whether return viewresult (with html) or fileresult (with image). not want use session, , have <sessionstate mode="off"> in app.

right now, have partial solution, save image filesystem , send html viewresult <img> tag in pointing saved image. not work concurrent users (each user may overwrite file, , interfere each other)

essentially best way send image , html browser, without using server-side session? , without using elaborate filesystem based store images? i'm aware of <img src="data: .. " /> , since not work ie7 , less, , since image quite big, not option.

thanks in advance!

your image must identifiable in unique way. perhaps time stamp of when tag cloud changed? or hash of tags in cloud?

put image , image map storage.

mike brown


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

android - layout with fragment and framelayout replaced by another fragment and framelayout -