Working with companants - newbie

Discussion in 'ASP.NET / ASP.NET Core' started by JimL, Jul 26, 2006.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Couple of things.

    1) working with aspemail was easy I download the files used the dll locally and uploaded it to my site no problems.
    2) Now I'm trying to create a form with a rich text box, it was simple to down load the files and use the dll locally, the problem come when I need to upload my files.
    I need to update my <%@ Register TagPrefix='RTB' Namespace='RichTextBoxControl' Assembly='RichTextBox, Version=2.5.0.0, Culture=Neutral, PublicKeyToken=17b15412cfbf13c1' %> because my local one will not work when I upload and once I update it it will not work locally.

    So I have to switch back and forth while I debug. Is this normal or am I nuts.

    On another note the version of rich text box used by discountasp.net does not work in mozilla. Major bummer.

    When I submit the form I get a security error: A potentially dangerous Request.Form value was detected from the client .

    Any ideas? and thanks for putting up with my dumb questions.
     
  2. You mighthave to install (locally) the same version that is running on the server if you do not want to keep switching back and forth.

    I haven't tried this, but try modifying this line...

    <%@ Register TagPrefix="RTB" Namespace="RichTextBoxControl" Assembly="RichTextBox, Version=2.5.0.0, Culture=Neutral, PublicKeyToken=17b15412cfbf13c1" %></BLOCKQUOTE>
    to this...

    <%@ Register TagPrefix="RTB" Namespace="RichTextBoxControl" Assembly="RichTextBox" %></BLOCKQUOTE>
    it'll probably throw an error, but worth a try.


    You could also use http://freetextbox.com/


    Joel Thoms
    DiscountASP.NET
    http://www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page