but then aslo here is problem in loading assemblies,token,etc
this is the error
Error 1 'Could not load file or assembly 'FreeTextBox, Version=3.3.0.22914, Culture=neutral, PublicKeyToken=5962a4e684a48b87' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)' D:\DotNetBlog\DotNetBlog\LC
DotNetBlog
None
0 Points
6 Posts
Re: How to add FreeText box in asp.net c# webforms..?
Aug 15, 2014 08:19 PM|Harish Tygai|LINK
Thanks for your reply.
I have already registered this richtextbox, even also i configure web.config for asp.net 4.0
For ASP.NET 4.0, we'll need to add <httpRuntime requestValidationMode="2.0" /> to allow HTML to be posted
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
</configuration>
And
<@% Page ValidateRequest="false" %>
<%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
but then aslo here is problem in loading assemblies,token,etc
this is the error
Error 1 'Could not load file or assembly 'FreeTextBox, Version=3.3.0.22914, Culture=neutral, PublicKeyToken=5962a4e684a48b87' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)' D:\DotNetBlog\DotNetBlog\LC DotNetBlog
asp.netC#