My Blog 155 posts
notes & snippets
<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.10.0.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.10.0.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js" type="text/javascript"></script>
.NET Wrapper for WkHtmlToPdf static DLL. Allows you to utilize full power of the library.
https://github.com/gmanny/Pechkin
https://github.com/gmanny/Pechkin
How to restart programmatically an ASP.NET application?
http://daron.yondem.com/en/post/d82b6b05-8c59-4136-becd-329156083b75
http://daron.yondem.com/en/post/d82b6b05-8c59-4136-becd-329156083b75
Facebook Photos Size Guide: Dimensions & Types (2013 Edition)
http://havecamerawilltravel.com/photographer/images-photos-facebook-sizes-dimensions-types
http://havecamerawilltravel.com/photographer/images-photos-facebook-sizes-dimensions-types
1. Install UrlRewrite extension
iis.net/download/urlrewrite
2. Edit Web.config
<system.webServer>
<rewrite>
<rules>
<rule name="CanonicalHostNameRule1">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^yourdomain\.com$" negate="true" />
</conditions>
<action type="Redirect" url="http://yourdomain.com/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
http://stackoverflow.com/questions/4882508/how-to-remove-the-www-prefix-in-asp-net-mvc
iis.net/download/urlrewrite
2. Edit Web.config
<system.webServer>
<rewrite>
<rules>
<rule name="CanonicalHostNameRule1">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^yourdomain\.com$" negate="true" />
</conditions>
<action type="Redirect" url="http://yourdomain.com/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
http://stackoverflow.com/questions/4882508/how-to-remove-the-www-prefix-in-asp-net-mvc
