When working with Silverlight, I\'ve noticed that Firefox will cache the XAP file, so if I do an update, a user may be stuck using an outdated version. Is there a way to fo
Adding the timestamp for the XAP worked for me (I'm adding the SL control in javascript but this could just as easily be done inline):
var appTimestamp = '<%= System.IO.File.GetLastWriteTime(Server.MapPath("ClientBin/MyApp.xap")) %>'; var source = 'ClientBin/MyApp.xap?appTimestamp=' + appTimestamp;