我正在尝试合并一个响应式jquery输入控件,用于输入博客,这些博客将保存到数据库,然后从检索到Web表单页面。
我正面临着输入文本控件的问题,因为当我通过我网站首页的转发器渲染时,通过它输入的条目正在劫持我的博客滑块。
当我得到简单的纯文本x它工作正常,当我甚至派生这个HTML编码的文本也工作正常但是当我将.ToSubstring()
函数添加到eval方法时它开始表现的那一刻,打破我的滑块本身。冲突?
这是我的代码
<%#System.Web.HttpUtility.HtmlDecode(Eval("Content").ToString().Substring(0,180)) %>
这是HTML编码文本
<div class="MsoNormal" style="text-align: justify;">Our last pilgrimage to <a href="http://www.sigandur.in/" target="_blank">Sri Chowdeshwari Temple</a> at Sigandhur (Karnataka) was in <a href="http://kartourism.blogspot.com/2009/01/sigandhur-tourism.html">2009</a>. It was time to revisit the temple and offer our prayers. We knew very well about the perils of visiting the temple on a holiday, yet we undertook the pilgrimage as we had a packed schedule.</div>
这是使用.ToSubstring()方法添加时滑块的中断方式
任何人都可以帮我解决这个问题吗?或建议我一个更好的文字输入控件,这与用户代码没有冲突。谢谢
这也是我的滑块代码
<div class="col-md-6" style="height: 260px; background-color: #EEEEEE">
<h3 style="text-align: center; font-weight: bold;">Blogging my Thoughts <span>
<img style="height: 35px; width: 35px" src="images/home/pen.png" />
</span></h3>
<div id="carousel-example" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<asp:Repeater ID="RepDetails" runat="server">
<ItemTemplate>
<div class="item <%# (Container.ItemIndex == 0 ? "active" : "") %>">
<div class="testimonial-section">
<h3 runat="server" id="fh"><%#Eval("Heading") %></h3>
<p runat="server" id="fp">
<%#System.Web.HttpUtility.HtmlDecode(Eval("Content").ToString().Substring(0,180)) %>
</p>
<br />
<a href='<%#String.Format("{0}", Eval("Seo"))%>' style="font-weight: bold; font-size: 16px">Continue Reading </a>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
<ol class="carousel-indicators carousel-indicators-set">
<li data-target="#carousel-example" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example" data-slide-to="1"></li>
<li data-target="#carousel-example" data-slide-to="2"></li>
</ol>
</div>
</div>
</div>
答案 0 :(得分:0)
这是因为你正在制作.Substring(0,180)
但是编码文本超过180,它是463个字符,
因此,<div>
标记已打开且未关闭,因为结束标记</div>
位于180个字符之后
我认为你必须显示所有编码的文本,否则你必须显示一些没有html标签的其他内容。