Infragistics2.WebUI.UltraWebTab.v7.2.dll控件调不出来

cheney1206 2009-09-09 02:03:36

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Report.aspx.cs" Inherits="System_Report" %>

<%@ Register Assembly="Infragistics2.WebUI.UltraWebTab.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
Namespace="Infragistics.WebUI.UltraWebTab" TagPrefix="igtab" %>
<%@ Register assembly="Infragistics2.WebUI.UltraWebToolbar.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebToolbar" tagprefix="igtbar" %>
<%@ Register Assembly="Infragistics2.WebUI.Misc.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.Misc" TagPrefix="igmisc" %>
<%@ Register assembly="Infragistics2.WebUI.WebDateChooser.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.WebSchedule" tagprefix="igsch" %>
<%@ Register assembly="Infragistics2.WebUI.UltraWebGrid.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebGrid" tagprefix="igtbl" %>

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

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Front Desk System -- Report</title>
<link href="../CSS/Style.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/jscript">
function OnClick (oToolBar, oItem, oEvennt) {
switch(oItem.Key)
{
// case "Home":
// window.parent.location = "../Navigation/Navigation.aspx";
// break;
}
}

</script>
</head>
<body style="margin:1; padding:1; height:100%; width:100%;" scroll="no">
<form id="form1" runat="server">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<igtbar:UltraWebToolbar ID="UltraWebToolbar1" runat='server' BackColor="#D0DAE3"
BackgroundImage="none" BorderColor="#E0E0E4" BorderStyle="Solid"
BorderWidth="1px" Font-Names="Arial" Font-Size="8pt" ForeColor="Black"
Height="20px" ImageDirectory="/ig_common/images/" ItemSpacing="0"
ItemWidthDefault="80px" Movable="false"
onbuttonclicked="UltraWebToolbar1_ButtonClicked" >
<HoverStyle BackColor="#D8D8E0" BorderColor="#777788" BorderStyle="Solid"
BorderWidth="1px" Cursor="Default" Font-Names="Arial" Font-Size="8pt" ForeColor="Black">
</HoverStyle>
<ClientSideEvents Click="OnClick"></ClientSideEvents>
<Items>
<igtbar:TBarButton Images-DefaultImage-Url="../Images/exit.gif" Key="Home" Tag="Home" Text="Home">
<Images>
<DefaultImage Url="../Images/exit.gif"></DefaultImage>
</Images>
</igtbar:TBarButton>
</Items>
<DefaultStyle BorderColor="#888888" BorderStyle="None" BorderWidth="0px"
Font-Names="Arial" Font-Size="9pt" ForeColor="Black">
</DefaultStyle>
<SelectedStyle BorderColor="#9999AA" BackColor="#F0F0F4" BorderStyle="Solid"
BorderWidth="1px" Cursor="Default" Font-Names="Arial" Font-Size="9pt" ForeColor="Black">
</SelectedStyle>
</igtbar:UltraWebToolbar>
</td>
</tr>
</table>
<table style="width:100%; height:100%; margin:0; padding:0;" cellpadding="0" cellspacing="0">
<tr style="height:40px">
<td align="center">
<font class="ListTitle">Moonshine Workshop Report</font>
</td>
</tr>
</table>
<br />
<igtab:UltraWebTab ID="UltraWebTab1" runat="server" BorderColor="#949878" BorderStyle="Solid"
BorderWidth="1px" Height="600px" ThreeDEffect="False" Width="100%">
<DefaultTabStyle BackColor="#FEFCFD" Font-Names="Microsoft Sans Serif" Font-Size="8pt"
ForeColor="Black" Height="22px">
<Padding Top="2px" />
</DefaultTabStyle>
<Tabs>
<igtab:Tab Key="Feeder" Tag="Feeder" Text="Feeder Repair ">
<ContentPane TargetUrl="FeederReport.aspx">
</ContentPane>
</igtab:Tab>
<igtab:TabSeparator>
<Style Width="3px"></Style>
</igtab:TabSeparator>
<igtab:Tab Key="Parts" Tag="Parts" Text="Parts Repair List">
<ContentPane TargetUrl="PartsReportList.aspx">
</ContentPane>
</igtab:Tab>
<igtab:TabSeparator>
<Style Width="3px"></Style>
</igtab:TabSeparator>
<igtab:Tab Key="PartsCost" Tag="PartsCost" Text="Parts Repair Cost">
<ContentPane TargetUrl="PartsReportCost.aspx">
</ContentPane>
</igtab:Tab>
<igtab:TabSeparator>
<Style Width="3px"></Style>
</igtab:TabSeparator>
<igtab:Tab Key="Stencil" Tag="Stencil" Text="Stencil Workshop">
<ContentPane TargetUrl="StencilReport.aspx">
</ContentPane>
</igtab:Tab>
<igtab:TabSeparator>
<Style Width="3px"></Style>
</igtab:TabSeparator>
<igtab:Tab Key="Tooling" Tag="Tooling" Text="Tooling Workshop">
<ContentPane TargetUrl="ToolingReport.aspx">
</ContentPane>
</igtab:Tab>
</Tabs>
<RoundedImage FillStyle="LeftMergedWithCenter" HoverImage="[ig_tab_winXP2.gif]" LeftSideWidth="7"
NormalImage="[ig_tab_winXP3.gif]" RightSideWidth="6" SelectedImage="[ig_tab_winXP1.gif]"
ShiftOfImages="2" />
<SelectedTabStyle>
<Padding Bottom="2px" />
</SelectedTabStyle>
</igtab:UltraWebTab>
</form>

</body>
</html>


Infragistics2.WebUI.UltraWebTab.v7.2.dll已经在bin目录下面,打开页面也不报错.只显示UltraWebToolbar菜单,UltraWebTab不显示.不明白为什么?

...全文
250 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
cheney1206 2009-09-09
  • 打赏
  • 举报
回复
能帮我看看是哪里错了吗?非常感谢
fengjian_428 2009-09-09
  • 打赏
  • 举报
回复
肯定你代码写错了

110,545

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧