helpcenter/Web/Controls/Help/Search.ru.ascx
2016-11-21 11:30:37 +03:00

23 lines
926 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "Результаты поиска";
MetaKeyWords = "";
MetaDescription = "";
var helpcenter = new HelpCenterModel();
helpcenter.NoResults = "Не найдено результатов, соответствующих Вашему запросу";
(Page as BasePage).HelpCenter = helpcenter;
VirtualPathUtility.ToAbsolute("~/search.aspx");
helpcenter.WaterMark = "Введите вопрос";
}
</script>
<div class="MainHelpCenter">
<input id="helpmark" value="<%=HttpUtility.HtmlEncode(((Page as BasePage).HelpCenter as HelpCenterModel).WaterMark)%>" type="hidden" />
</div>