söndag 29 juni 2008

Beräkning av kilometertid

För att beräkna kilometertid på formatet mm:ss används följande formel

Google Spreadsheet:
=TIME(0,0,(MINUTE(D3)*60 + SECOND(D3))/C3)

Microsoft Excel
=TIME(0;0;(MINUTE(D3)*60 + SECOND(B2))/C3)

Där D3 är tid i datumformat [hh:mm:ss] och C3 är distans i kilometer

onsdag 4 juni 2008

AJAX File Download

A file download initialized by a button click on a button that is placed inside an updatepanel requires some fiddling with IFRAME

The reason for this is:

"Since there is no traditional HTTP response, you have no context with which to send the file to the browser for normal download."

Check this out for a complete solution: http://encosia.com/2007/02/23/ajax-file-downloads-and-iframes/