Updated RadEditControl unable to display HTML the older control could display.

1 Answer 29 Views
Editor
Philip
Top achievements
Rank 1
Iron
Philip asked on 09 Mar 2024, 01:23 PM

Telerik.web.ui version 2020.1.219.45 vs the older 2014.2.724.40 DLL.  For  security reasons I must use the newer library.

Using the most basic code below both can display simple HTML.

However, complex HTML like the attached file (rename txt to html) the old DLL displays fine, the newer DLL displays a crazy mess.

The attached HTML also shows fine in browers like Chrome.

I have tried filters such as EditorFilters.ConvertInlineStylesToAttributes, PdfExportFilter.

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

  <telerik:RadEditor ID="RadEditor1" runat="server">         </telerik:RadEditor>

 

Thank you for your advice.

Philip
Top achievements
Rank 1
Iron
commented on 10 Mar 2024, 03:32 PM

I have tried the 2024 version 2024.1..131.45 it fails just like the 2020 version fails.  The only version that can display HTML generated by SAP Crystal Reports is the 2014 version 2014.2.724.40.

Lastly I have tried these filters but they  make no difference.

Dim s As String = File.ReadAllText("C:\_research\RadEditorControlNewDLLs\_InputHtml\NewAccountLetter.html")
RadEditor1.NewLineMode = EditorNewLineModes.P
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.ConvertInlineStylesToAttributes)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.PdfExportFilter)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.StripCssExpressions)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.ConvertFontToSpan)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.FixEnclosingP)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.RemoveExtraBreaks)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.IECleanAnchors)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.RemoveScripts)
RadEditor1.EnableFilter(Telerik.Web.UI.EditorFilters.ConvertToXhtml)
RadEditor1.Content = s

Thank you for your advice.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 12 Mar 2024, 03:05 PM | edited on 12 Mar 2024, 03:07 PM

Hi Philip,

Thank you for the detailed information!

I examined the contents of the provided NewAccountLetter.html file and noticed that the style tag is not wrapped in a head tag which strips it when loaded in the editor iframe content area. To fix the problem either wrap the style and title tags in a head tag or move the style tag to the end of the file:

Solution 1

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>
    <head>
        <style>
            div.crystalstyle div {
                position: absolute;
                z-index: 25
            }

            div.crystalstyle a {
                text-decoration: none
            }

                div.crystalstyle a img {
                    border-style: none;
                    border-width: 0
                }

            div.crystalstyle div.tbg {
                background: url("js/dhtmllib/images/transp.gif") repeat-x repeat-y;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0 {
                font-size: 12pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1 {
                font-size: 14pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-2 {
                font-size: 11pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-3 {
                font-size: 11pt;
                color: #000000;
                font-family: Arial;
                font-weight: normal;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4 {
                font-size: 12pt;
                color: #000000;
                font-family: Arial;
                font-weight: normal;
            }

            .adc6ce8661-b220-49fd-b24e-caa98cb040ef-0 {
                border-color: #000000;
                border-left-width: 0px;
                border-right-width: 0px;
                border-top-width: 0px;
                border-bottom-width: 0px;
            }
        </style>
        <TITLE>Crystal Report Viewer</TITLE>
    </head>
<BODY BGCOLOR="FFFFFF" LEFTMARGIN=31 TOPMARGIN=31>
    <Div class="crystalstyle" style="position:absolute; top:31px; left:31px; ">
        <div class="crystalstyle" style="margin-top:24px;margin-bottom:24px;margin-left:24px;margin-right:24px;top:0px;left:0px;width:768px;height:1008px;overflow:hidden;">
            <div id="PageHeaderSection1" style="z-index:3;top:0px;left:0px;width:768px;height:932px;">

            </div>
            <div id="Text2" class="adc6ce8661-b220-49fd-b24e-caa98cb040ef-0" style="top:0px;left:0px;width:757px;height:930px;">
                <div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:22px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">NEW&nbsp;ACCOUNT&nbsp;LETTER</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Account&nbsp;Name:&nbsp;SUNCOAST&nbsp;DIVERSIFIED&nbsp;INC</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Account&nbsp;Number:&nbsp;8</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Filing&nbsp;Frequency:&nbsp;Seasonal</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">First&nbsp;Return&nbsp;Date:&nbsp;August,&nbsp;1989</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">User&nbsp;Name:&nbsp;s8</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Password:&nbsp;s8</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:17px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">March&nbsp;08,&nbsp;2024</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:17px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Dear&nbsp;Taxpayer,</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">The&nbsp;Tourist&nbsp;Tax&nbsp;Application&nbsp;for&nbsp;your&nbsp;property&nbsp;has&nbsp;been&nbsp;received&nbsp;and&nbsp;the&nbsp;rental&nbsp;property&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">account&nbsp;has&nbsp;been&nbsp;assigned.&nbsp;&nbsp;Pursuant&nbsp;to&nbsp;your&nbsp;Tourist&nbsp;Tax&nbsp;Application,&nbsp;the&nbsp;rental&nbsp;of&nbsp;your&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">unit&nbsp;will&nbsp;begin&nbsp;on&nbsp;August,&nbsp;1989.</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">The&nbsp;total&nbsp;Tourist&nbsp;Tax&nbsp;rate&nbsp;is&nbsp;12%.&nbsp;All&nbsp;properties&nbsp;must&nbsp;be&nbsp;registered&nbsp;with&nbsp;both&nbsp;Manatee&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">County&nbsp;Tax&nbsp;Collector&nbsp;and&nbsp;the&nbsp;Florida&nbsp;Department&nbsp;of&nbsp;Revenue.</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;Manatee&nbsp;County&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">collects&nbsp;5%&nbsp;based&nbsp;on&nbsp;the&nbsp;taxable&nbsp;rental&nbsp;receipts.</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;The&nbsp;remaining&nbsp;7%&nbsp;is&nbsp;collected&nbsp;by&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">the&nbsp;Florida&nbsp;Department&nbsp;of&nbsp;Revenue.&nbsp;For&nbsp;more&nbsp;information&nbsp;on&nbsp;how&nbsp;to&nbsp;register&nbsp;with&nbsp;the&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Florida&nbsp;Department&nbsp;of&nbsp;Revenue,&nbsp;please&nbsp;contact&nbsp;their&nbsp;Sarasota&nbsp;Center&nbsp;at&nbsp;941-361-6001&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">or&nbsp;1-800-352-2671.</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Manatee&nbsp;County&nbsp;offers&nbsp;online&nbsp;remittance&nbsp;of&nbsp;your&nbsp;Tourist&nbsp;Tax.&nbsp;To&nbsp;access&nbsp;the&nbsp;system,&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">please&nbsp;go&nbsp;to&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">https://secure.taxcollector.com/Excise/Login.aspx</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;&nbsp;Once&nbsp;you&nbsp;click&nbsp;on&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">the&nbsp;link,&nbsp;you&nbsp;will&nbsp;be&nbsp;asked&nbsp;to&nbsp;enter&nbsp;your&nbsp;user&nbsp;name&nbsp;and&nbsp;password&nbsp;that&nbsp;is&nbsp;located&nbsp;at&nbsp;the&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">top&nbsp;of&nbsp;this&nbsp;letter.&nbsp;&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">All&nbsp;Tourist&nbsp;Tax&nbsp;remittance&nbsp;must&nbsp;be&nbsp;posted&nbsp;and&nbsp;paid&nbsp;on&nbsp;or&nbsp;before&nbsp;the&nbsp;20th&nbsp;of&nbsp;the&nbsp;month&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">following&nbsp;each&nbsp;reporting&nbsp;period.&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">When&nbsp;there&nbsp;is&nbsp;no&nbsp;income&nbsp;to&nbsp;report,</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">a&nbsp;zero&nbsp;return&nbsp;must&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">be&nbsp;filed</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;Failure&nbsp;to&nbsp;file&nbsp;your&nbsp;return&nbsp;will&nbsp;result&nbsp;in&nbsp;a&nbsp;minimum&nbsp;$50.00&nbsp;penalty&nbsp;fee,&nbsp;plus&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">interest.</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">All&nbsp;online&nbsp;payments&nbsp;submitted&nbsp;by&nbsp;the&nbsp;20th&nbsp;are&nbsp;eligible&nbsp;for&nbsp;a&nbsp;2.5%&nbsp;Collection&nbsp;Allowance&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">of&nbsp;the&nbsp;tax&nbsp;collected,&nbsp;not&nbsp;to&nbsp;exceed&nbsp;$30.00&nbsp;per&nbsp;month.&nbsp;All&nbsp;payments&nbsp;processed&nbsp;by&nbsp;mail&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">will&nbsp;forfeit&nbsp;the&nbsp;collection&nbsp;allowance.</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Please&nbsp;notify&nbsp;our&nbsp;office&nbsp;regarding&nbsp;any&nbsp;changes&nbsp;to&nbsp;your&nbsp;account&nbsp;using&nbsp;our&nbsp;Account&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:20px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Status&nbsp;Change&nbsp;form.&nbsp;This&nbsp;form&nbsp;is&nbsp;located&nbsp;on&nbsp;our&nbsp;website&nbsp;at&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">taxcollector.com</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;Should&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">you&nbsp;need&nbsp;assistance,&nbsp;please&nbsp;contact&nbsp;our&nbsp;office.</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Sincerely,</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Field&nbsp;Services&nbsp;and&nbsp;Collections&nbsp;Department&nbsp;-&nbsp;Tourist&nbsp;Tax</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">1001&nbsp;3rd&nbsp;Avenue&nbsp;West&nbsp;Suite&nbsp;240</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Bradenton,&nbsp;FL&nbsp;34205</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Phone:&nbsp;(941)&nbsp;741-&nbsp;4809</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Email:&nbsp;touristtax@taxcollector.com</span></div></div><div nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div>
            </div>

        </div>
        <DIV style="position:absolute; top:53px">
            </TR></TABLE></CENTER>
        </DIV>
</BODY>
</HTML>

 

Solution 2

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>

<TITLE>Crystal Report Viewer</TITLE>
<BODY BGCOLOR="FFFFFF" LEFTMARGIN=31 TOPMARGIN=31>
    <Div class="crystalstyle" style="position:absolute; top:31px; left:31px; ">
        <div class="crystalstyle" style="margin-top:24px;margin-bottom:24px;margin-left:24px;margin-right:24px;top:0px;left:0px;width:768px;height:1008px;overflow:hidden;">
            <div id="PageHeaderSection1" style="z-index:3;top:0px;left:0px;width:768px;height:932px;">

            </div>
            <div id="Text2" class="adc6ce8661-b220-49fd-b24e-caa98cb040ef-0" style="top:0px;left:0px;width:757px;height:930px;">
                <div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:22px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">NEW&nbsp;ACCOUNT&nbsp;LETTER</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Account&nbsp;Name:&nbsp;SUNCOAST&nbsp;DIVERSIFIED&nbsp;INC</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Account&nbsp;Number:&nbsp;8</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Filing&nbsp;Frequency:&nbsp;Seasonal</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">First&nbsp;Return&nbsp;Date:&nbsp;August,&nbsp;1989</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">User&nbsp;Name:&nbsp;s8</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">Password:&nbsp;s8</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:17px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">March&nbsp;08,&nbsp;2024</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:17px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Dear&nbsp;Taxpayer,</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">The&nbsp;Tourist&nbsp;Tax&nbsp;Application&nbsp;for&nbsp;your&nbsp;property&nbsp;has&nbsp;been&nbsp;received&nbsp;and&nbsp;the&nbsp;rental&nbsp;property&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">account&nbsp;has&nbsp;been&nbsp;assigned.&nbsp;&nbsp;Pursuant&nbsp;to&nbsp;your&nbsp;Tourist&nbsp;Tax&nbsp;Application,&nbsp;the&nbsp;rental&nbsp;of&nbsp;your&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">unit&nbsp;will&nbsp;begin&nbsp;on&nbsp;August,&nbsp;1989.</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">The&nbsp;total&nbsp;Tourist&nbsp;Tax&nbsp;rate&nbsp;is&nbsp;12%.&nbsp;All&nbsp;properties&nbsp;must&nbsp;be&nbsp;registered&nbsp;with&nbsp;both&nbsp;Manatee&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">County&nbsp;Tax&nbsp;Collector&nbsp;and&nbsp;the&nbsp;Florida&nbsp;Department&nbsp;of&nbsp;Revenue.</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">&nbsp;Manatee&nbsp;County&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">collects&nbsp;5%&nbsp;based&nbsp;on&nbsp;the&nbsp;taxable&nbsp;rental&nbsp;receipts.</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;The&nbsp;remaining&nbsp;7%&nbsp;is&nbsp;collected&nbsp;by&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">the&nbsp;Florida&nbsp;Department&nbsp;of&nbsp;Revenue.&nbsp;For&nbsp;more&nbsp;information&nbsp;on&nbsp;how&nbsp;to&nbsp;register&nbsp;with&nbsp;the&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Florida&nbsp;Department&nbsp;of&nbsp;Revenue,&nbsp;please&nbsp;contact&nbsp;their&nbsp;Sarasota&nbsp;Center&nbsp;at&nbsp;941-361-6001&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">or&nbsp;1-800-352-2671.</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Manatee&nbsp;County&nbsp;offers&nbsp;online&nbsp;remittance&nbsp;of&nbsp;your&nbsp;Tourist&nbsp;Tax.&nbsp;To&nbsp;access&nbsp;the&nbsp;system,&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">please&nbsp;go&nbsp;to&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">https://secure.taxcollector.com/Excise/Login.aspx</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;&nbsp;Once&nbsp;you&nbsp;click&nbsp;on&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">the&nbsp;link,&nbsp;you&nbsp;will&nbsp;be&nbsp;asked&nbsp;to&nbsp;enter&nbsp;your&nbsp;user&nbsp;name&nbsp;and&nbsp;password&nbsp;that&nbsp;is&nbsp;located&nbsp;at&nbsp;the&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">top&nbsp;of&nbsp;this&nbsp;letter.&nbsp;&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">All&nbsp;Tourist&nbsp;Tax&nbsp;remittance&nbsp;must&nbsp;be&nbsp;posted&nbsp;and&nbsp;paid&nbsp;on&nbsp;or&nbsp;before&nbsp;the&nbsp;20th&nbsp;of&nbsp;the&nbsp;month&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">following&nbsp;each&nbsp;reporting&nbsp;period.&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">When&nbsp;there&nbsp;is&nbsp;no&nbsp;income&nbsp;to&nbsp;report,</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">a&nbsp;zero&nbsp;return&nbsp;must&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">be&nbsp;filed</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;Failure&nbsp;to&nbsp;file&nbsp;your&nbsp;return&nbsp;will&nbsp;result&nbsp;in&nbsp;a&nbsp;minimum&nbsp;$50.00&nbsp;penalty&nbsp;fee,&nbsp;plus&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">interest.</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">All&nbsp;online&nbsp;payments&nbsp;submitted&nbsp;by&nbsp;the&nbsp;20th&nbsp;are&nbsp;eligible&nbsp;for&nbsp;a&nbsp;2.5%&nbsp;Collection&nbsp;Allowance&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">of&nbsp;the&nbsp;tax&nbsp;collected,&nbsp;not&nbsp;to&nbsp;exceed&nbsp;$30.00&nbsp;per&nbsp;month.&nbsp;All&nbsp;payments&nbsp;processed&nbsp;by&nbsp;mail&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">will&nbsp;forfeit&nbsp;the&nbsp;collection&nbsp;allowance.</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Please&nbsp;notify&nbsp;our&nbsp;office&nbsp;regarding&nbsp;any&nbsp;changes&nbsp;to&nbsp;your&nbsp;account&nbsp;using&nbsp;our&nbsp;Account&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:20px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Status&nbsp;Change&nbsp;form.&nbsp;This&nbsp;form&nbsp;is&nbsp;located&nbsp;on&nbsp;our&nbsp;website&nbsp;at&nbsp;</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0">taxcollector.com</span><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">.&nbsp;Should&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">you&nbsp;need&nbsp;assistance,&nbsp;please&nbsp;contact&nbsp;our&nbsp;office.</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Sincerely,</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Field&nbsp;Services&nbsp;and&nbsp;Collections&nbsp;Department&nbsp;-&nbsp;Tourist&nbsp;Tax</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">1001&nbsp;3rd&nbsp;Avenue&nbsp;West&nbsp;Suite&nbsp;240</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Bradenton,&nbsp;FL&nbsp;34205</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Phone:&nbsp;(941)&nbsp;741-&nbsp;4809</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;top:-1px;line-height:19px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">Email:&nbsp;touristtax@taxcollector.com</span></div></div><div nowrap=nowrap style="position:relative;padding-left:1px;"><div style="position:relative;line-height:18px;"><span class="fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4">&nbsp;</span></div></div>
            </div>

        </div>
        <DIV style="position:absolute; top:53px">
            </TR></TABLE></CENTER>
        </DIV>

        <style>
            div.crystalstyle div {
                position: absolute;
                z-index: 25
            }

            div.crystalstyle a {
                text-decoration: none
            }

                div.crystalstyle a img {
                    border-style: none;
                    border-width: 0
                }

            div.crystalstyle div.tbg {
                background: url("js/dhtmllib/images/transp.gif") repeat-x repeat-y;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-0 {
                font-size: 12pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-1 {
                font-size: 14pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-2 {
                font-size: 11pt;
                color: #000000;
                font-family: Arial;
                font-weight: bold;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-3 {
                font-size: 11pt;
                color: #000000;
                font-family: Arial;
                font-weight: normal;
            }

            .fc56e533e6-7ff2-4fcc-82b5-72e72b5eb693-4 {
                font-size: 12pt;
                color: #000000;
                font-family: Arial;
                font-weight: normal;
            }

            .adc6ce8661-b220-49fd-b24e-caa98cb040ef-0 {
                border-color: #000000;
                border-left-width: 0px;
                border-right-width: 0px;
                border-top-width: 0px;
                border-bottom-width: 0px;
            }
        </style>
    </Div></BODY>

</HTML>

 

and this produced the desired outcome: 

 

Regards,
Rumen
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources
Tags
Editor
Asked by
Philip
Top achievements
Rank 1
Iron
Answers by
Rumen
Telerik team
Share this question
or