2011-11-05 101 views
0

我遇到問題。 我在一個網站在asp.net中扭動 我有一個SCC文件,我希望我的用戶控件(ascx)文件使用它。 問題是控制器無法識別SCC代碼。插入scc到ascx失敗

我在ASCX代碼:

enter code here <%@ Control Language="C#" AutoEventWireup="true" CodeFile="TabsAndLogoUserControl.ascx.cs" Inherits="UserControls_WebUserControl" %> <link href="~/App_Themes/style.css" rel="stylesheet" type="text/css" />  






<tr>      
    <td style=" width:30%"> 
    <div class="header_resize"> 
    <div class="logo">   
     <h1><a><span>Hello</span>Word<small>i need help</small></a></h1> 
     <br/><br/> 

     </div> 
     </div> 
    </td> 
    <td style=" height: 100%; width:70%">     
    </td> 
</tr> 

請幫幫我,告訴我什麼是我的錯 感謝

+1

你此刻的錯誤是,你有沒有問一個清晰的問題。您提供的代碼示例中沒有任何內容與前導碼有關。 –

回答

0

我想你所談論的CSS文件和代碼是不正確的,因爲相對路徑只能在服務器控件中識別。 嘗試:

<link href="App_Themes/style.css" rel="stylesheet" type="text/css" />