my experience – Menon

You need to add:  redirectMode=”Permanent”

               <add name="domain.com"
                 redirectMode="Permanent"
                 redirect="Domain"
                 ignoreCase="true" rewriteUrlParameter="IncludeQueryStringForRewrite"
                 virtualUrl="http://yourdomain.com/(.*)"
                 destinationUrl="http://www.yourdomain.com/$1" />

In the XSLT script, you can nicely formatted with each item on a separate line and indented use indent=”yes”, output will then be indent

eg:

<xsl:output method=”xml” indent=”yes” omit-xml-declaration=”yes” />

If you want to redirect a page permanently to the new location, ASP.Net 4.0 introduces a new method ie, HttpResponse.RedirectPermanent

example:
Response.RedirectPermanent(“http://www.menonon.net/MyNewPage.aspx”);

Error Details:

Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option Prevent saving changes that require the table to be re-created.

You need to Disable “Prevent Saving Changes that requires the table re-creation”.

  1. Open SQL Server Management Studio (SSMS) 2008
  2. Click ‘Tools’ Menu
  3. Then Click ‘Options’ as shown
  4. In the navigation pane of the Options window, expand Designers node and select Table and Database Designers option as shown in the below snippet

Risks of Turing Off “Prevent Saving Changes that Require Table Re-creation” in SSMS
If you turn off this feature then you can avoid table recreation. However, if you have the Change Tracking feature of SQL Server 2008 enabled to track the table changes then the change tracking information will be lost completely whenever table is recreated. So, it is always advised to use this feature very carefully especially in a production environment.

well, this is because your Page ValidationRequest is “True”, by default. you need to modify this in your web.config or on the page directive. You may have to set this like ValidationRequest=”False”

or in web.config under <system.web>

<Pages validateRequest=”false”/>

If you’re using .Net 3.5 or .Net 4.0 you will have to modify web.config with the following or add requestValidationMode=”2.0″ in httphandlers section.

<httpRuntime requestValidationMode=”2.0″ />

Hope this will help you to solve the issue.. please feel free to comment if you have any issues…

Noted all your comments and it was heartening and encouraging to read them. My sincere apologies to all for being unable to come online for a long time as I was held up with a few projects of significance the details of which I shall reveal once they become active.

Understand some of the components had become inactive during my absence and were no longer useable. I am correcting the same one by one and shall soon put it up for all to access.

The following components / modules are active now:

Thanks for all the comments and keep them coming …..

Exception Details: System.FormatException: Invalid length for a Base-64 char array.

While passing the data through GET, Request.Querystring object interprets the “+” sign as a space, and that causes problems for encoding. This throws error Invalid length for a Base-64 char array. You can resolve this issue using

Example:


While passing the data through GET, Request.Querystring object interprets the “+” sign as a space, and that causes problems for encoding. This throws error Invalid length for a Base-64 char array. You can resolve this issue using

Error Details: System.Security.Cryptography.CryptographicException The system cannot find the file specified

New Security constraints that were included into the windows server 2008, and a new user CryptoGraphic Operator will be created by default. If your Application is using RSACryptoServiceProvider on windows server 2008 with IIS 7, you can troubleshoot above issue through these steps easily.

  1. INETMGR (IIS 7) > Application Pools > YourApplicationPool > (Right Click) Advanced Settings > Set the Value of “Load User Profile” to “TRUE

IIS 7

My New Project For Lord Sree Guruvayurappan Temple Utsavam Live Video Streaming For more information Please visit http://www.guruvayurevents.com

Tag Cloud

Follow

Get every new post delivered to your Inbox.