I successfully deployed my Django site to IIS7 but I still have problems about how to configure IIS to serve the static files. I tried many many things from the internet but
If you are using django >= 1.3 and following the doc you are probably using the 'staticfiles' app.
/static/ and PATH /staticfiles/ (I have no experience with II7 but the conf should be straightforward)./manage.py collectstatic to move the static files into the correct pathand you should be done...
More info on production settings here.