Learn As Much As You Can

Tuesday, 2 April 2013

Tinymce Editor in Asp.net

First Download the Source Code from the TinyMce site and then Just Add the following code in the page where you want to show your TinyMce Editor  <script src="tinymce/jscripts/tiny_mce/tiny_mce.js" type="text/javascript"></script> <script...

Url ReWriting Using Url Rewriter.Net

Open your web project in Microsoft Visual Studio .NET. Add a reference to the Intelligencia.UrlRewriter assembly. Open the web.config file in your web project. Add the following in the web.config file: <configuration>   <configSections>     <section name="rewriter"             requirePermission="false"             type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />  </configSections>   <system.web>         <httpModules>      <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" />    </httpModules>     </system.web>  <system.webServer>    <modules runAllManagedModulesForAllRequests="true">      <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule" />    </modules>    <validation validateIntegratedModeConfiguration="false" />  </system.webServer>  <rewriter>    <rewrite url="~/products/(.+)" to="~/products.aspx?category=$1" />  </rewriter>  </configuration> And...