未指定控件类型

时间:2014-02-22 15:02:18

标签: c# asp.net html5 windowsformshost

我在visual studio 2013中创建了一个Web应用程序,并使用TX TextControl创建了一个Windows控件。此控件将在Web应用程序中使用。(http://www.textcontrol.com/en_US/support/documentation/dotnet/n_browser_based.tutorial_start.htm)我已按照他们的示例正常但控件提供错误:"未指定控件类型或找不到指定的类型&# 34 ;.在我粘贴示例代码的网页中:

    <object
            classid="http:BrowserBin/BrowserApplication.dll#BrowserApplication.BrowserAppControl"
            id="BrowserApp"
            name="BrowserApp"
            width="100%"
            height="700">
    </object>

HTML5抱怨它不支持&#34; classid&#34;并且环顾四周我将其更改为数据,但它仍然无法正常工作并产生上述错误。

以下是BrowserAppControl中的代码:

    public BrowserAppControl()
    {
        InitializeComponent();
        this.ViewerTextControl.CreateControl();
    }

    public void LoadDocument(string sHTMLDoc)
    {
        this.ViewerTextControl.Load(sHTMLDoc, TXTextControl.StringStreamType.HTMLFormat);
    }

我需要帮助,请。

1 个答案:

答案 0 :(得分:0)

试试这个:

<object classid="BrowserBin/BrowserApplication.dll#BrowserApplication.BrowserAppContro‌​l" id="BrowserApp" name="BrowserApp" width="1000" height="700"></object>