Слияние кода завершено, страница обновится автоматически
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
CodeBehind="Template_Edit.aspx.cs" Inherits="ControlExplorer.Template_Edit" %>
<%@ Register Assembly="FarPoint.Web.Spread" Namespace="FarPoint.Web.Spread" TagPrefix="FarPoint" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script type="text/javascript" language="javascript">
function SpreadCallBack() {
var spread1 = document.getElementById("<%=fpDataFields.ClientID %>");
spread1.EndEdit();
spread1.UpdatePostbackData();
}
</script>
<style type="text/css">
.cellClass
{
text-decoration: underline;
color: Blue;
text-align: center;
cursor: pointer;
}
</style>
<script language="javascript" type="text/javascript">
function del() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
var activeCol = ss.GetActiveCol();
var activeRow = ss.GetActiveRow();
if (activeCol == 9) {
if (confirm("确定删除该行?")) {
ss.CallBack("DeleteRow");
ss.Delete();
setFocus(ss);
}
}
else if (activeCol == 8 && ss.GetValue(activeRow, activeCol) != "点击保存") {
alert("本列为指令列。双击前八列编辑。");
}
else if (activeCol == 8 && ss.GetValue(activeRow, activeCol) == "点击保存") {
var cellid = ss.GetValue(activeRow, 0);
var celldate = ss.GetValue(activeRow, 1);
var cellpro = ss.GetValue(activeRow, 2);
var cellno = ss.GetValue(activeRow, 3);
var cellincome = ss.GetValue(activeRow, 4);
var cellregion = ss.GetValue(activeRow, 5);
var cellsaler = ss.GetValue(activeRow, 6);
var cellnote = ss.GetValue(activeRow, 7);
ss.CallBack("btnupdate" + "=" + cellid + "=" + celldate + "=" + cellpro + "=" + cellno + "=" + cellincome + "=" + cellregion + "=" + cellsaler + "=" + cellnote);
setFocus(ss);
}
}
function edit() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
var activeCol = ss.GetActiveCol();
var activeRow = ss.GetActiveRow();
if (activeCol != 8 && activeCol !== 9) {
var cell = ss.GetCellByRowCol(activeRow, 8);
cell.removeAttribute("FpCellType");
ss.SetValue(activeRow, 8, "点击保存", true);
cell.setAttribute("FpCellType", "readonly");
}
}
function btnOver(theTD, ftbName, imageOver, imageDown) {
event.srcElement.style.backgroundColor = "lightsteelblue";
}
function btnOut(theTD, ftbName, imageOver, imageDown) {
event.srcElement.style.backgroundColor = "";
}
function setFocus(ss) {
if (document.all != null) {
ss.focus();
} else {
the_fpSpread.SetPageActiveSpread(ss);
the_fpSpread.Focus(ss);
}
}
function ColumnWidth() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var newWidth = prompt("请输入列宽:", spread.Columns(spread.GetActiveCol()).GetWidth());
if (!isNaN(newWidth) && newWidth != null)
spread.CallBack("ColWidth-" + newWidth);
//spread.SetColWidth(spread.GetActiveCol(), newWidth);
}
function SetDataArea() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("SetDataArea");
}
function DeleteDataArea() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var result = confirm("删除数据区域的同时,会删除全部的单元格绑定,是否删除?");
if (result == true) {
spread.CallBack("DeleteDataArea");
}
}
function DeleteDataField() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteDataField");
}
function InsertRow() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("InsertRow");
}
function DeleteRow() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteRow");
}
function InsertColumn() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("InsertColumn");
}
function DeleteColumn() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteColumn");
}
function RowHeight() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var newHeight = prompt("请输入行高:", spread.Rows(spread.GetActiveRow()).GetHeight());
if (!isNaN(newHeight) && newHeight != null)
spread.CallBack("RowHeight-" + newHeight);
//spread.SetRowHeight(spread.GetActiveRow(), newHeight);
}
function CellLock() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("CellLock");
}
function btnSave() {
SpreadCallBack();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("SaveTemplate");
setFocus(ss);
}
function FontBold() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontBold");
setFocus(ss);
}
function FontItalic() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontItalic");
setFocus(ss);
}
function SetDataField(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("DataField." + name);
setFocus(ss);
}
function SetFontName(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontName." + name);
setFocus(ss);
}
function SetLockColor(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("LockColor." + name);
setFocus(ss);
}
function SetProtect(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("Protect." + name);
setFocus(ss);
}
function SetFontSize(size) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontSize." + size);
setFocus(ss);
}
function FontUnderline() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontUnderline");
setFocus(ss);
}
function AlignLeft() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignLeft");
setFocus(ss);
}
function AlignCenter() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignCenter");
setFocus(ss);
}
function MergeCell() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("MergeCell");
setFocus(ss);
}
function AlignRight() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignRight");
setFocus(ss);
}
function SetForeColor(color) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("ForeColor." + color);
setFocus(ss);
}
function SetBackColor(color) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("BackColor." + color);
setFocus(ss);
}
function Cut() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Clear();
}
function Copy() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Copy();
}
function Paste() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Paste();
}
</script>
<script type="text/javascript">
window.addEventListener("load", moreInit, false);
function moreInit() {
var spread = document.getElementById("<%= fpTemplate.ClientID %>");
if (spread.addEventListener) {
spread.addEventListener("MenuItemClicked", spread_MenuItemClicked, false);
}
else {
spread.onMenuItemClicked = spread_MenuItemClicked;
}
if (document.all) {
// IE
if (spread.addEventListener) {
// IE9
//spread.addEventListener("CallBackStart", CallBackStart, false);
spread.addEventListener("CallBackStopped", CallBackStopped, false);
}
else {
// Other versions of IE and IE9 quirks mode (no doctype set)
//spread.onCallBackStart = CallBackStart;
spread.onCallBackStopped = CallBackStopped;
}
}
else {
// Firefox
//spread.addEventListener("CallBackStart", CallBackStart, false);
spread.addEventListener("CallBackStopped", CallBackStopped, false);
}
}
function CallBackStart(event) {
if (event == null) event = window.event;
alert("start");
}
function CallBackStopped(event) {
switch (event.command) {
case "DeleteDataArea":
alert("数据区域删除成功!");
break;
case "SetDataArea":
alert("数据区域设置成功!");
break;
case "SaveTemplate":
alert("模板保存成功!");
break;
default:
}
}
function spread_MenuItemClicked(event) {
var spread = document.getElementById("<%= fpTemplate.ClientID %>");
var menuItem = event.SelectedItem;
var itemText = menuItem.childNodes[1].childNodes[0].data;
spread.CallBack("DataField." + itemText);
setFocus(spread);
event.cancel = true; // skip posting back to server, since we handled all things from client side
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="HeaderTitle" runat="server">
模板数据源&样式修改
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="options" style="overflow: hidden; background-image: url(Resources/images/ajax/toolbar.Horizontal.background1.gif);
width: 97%;">
<table id="Table3" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table id="Table4" cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
<img alt="" src="Resources/images/ajax/toolbar.Horizontal.start.gif" border="0" />
</td>
<td class="btnsave" id="btnsave" onmouseover="btnOver();" onclick="btnSave();" onmouseout="btnOut();">
<img alt="保存" title="保存" src="Resources/images/ajax/save.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td style="padding-left: 4px;">
<asp:DropDownList ID="lstDataFields" runat="server" Style="width: 100px" TabIndex="-1"
onchange="SetDataField(this[this.selectedIndex].text);this.selectedIndex=0;">
<asp:ListItem>数据字段</asp:ListItem>
</asp:DropDownList>
</td>
<td class="btnsave" id="Td5" onmouseover="btnOver();" onclick="SetDataArea();" onmouseout="btnOut();">
<img alt="设置动态行" title="设置动态行" src="Resources/images/ajax/SetDataArea.png" border="0" />
</td>
<td class="btnsave" id="Td6" onmouseover="btnOver();" onclick="DeleteDataArea();"
onmouseout="btnOut();">
<img alt="清除动态行" title="清除动态行" src="Resources/images/ajax/DeleteDataArea.png" border="0" />
</td>
<td class="btnsave" id="Td7" onmouseover="btnOver();" onclick="DeleteDataField();"
onmouseout="btnOut();">
<img alt="清除单元格绑定" title="清除单元格绑定" src="Resources/images/ajax/DeleteDataField.png"
border="0" />
</td>
<td class="btnColumnWidth" id="Td4" onmouseover="btnOver();" onclick="CellLock();"
onmouseout="btnOut();">
<img alt="锁定/解锁" title="锁定/解锁" src="Resources/images/ajax/lock.png" border="0" width="20" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Copy" onmouseover="btnOver();" onclick="Copy();"
onmouseout="btnOut();">
<img height="20" alt="复制" title="复制" src="Resources/images/ajax/copy.gif" width="21"
border="0" />
</td>
<td class="btnnormal" id="ss_btn_Cut" onmouseover="btnOver();" onclick="Cut();" onmouseout="btnOut();">
<img height="20" alt="剪切" title="剪切" src="Resources/images/ajax/cut.gif" width="21"
border="0" />
</td>
<td class="btnnormal" id="ss_btn_Paste" onmouseover="btnOver();" onclick="Paste();"
onmouseout="btnOut();">
<img height="20" alt="粘贴" title="粘贴" src="Resources/images/ajax/paste.gif" width="21"
border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Bold" onmouseover="btnOver();" onclick="FontBold();"
onmouseout="btnOut();">
<img alt="粗体" title="粗体" src="Resources/images/ajax/Bold.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Italic" onmouseover="btnOver();" onclick="FontItalic();"
onmouseout="btnOut();">
<img alt="斜体" title="斜体" src="Resources/images/ajax/Italic.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Underline" onmouseover="btnOver();" onclick="FontUnderline();"
onmouseout="btnOut();">
<img alt="下划线" title="下划线" src="Resources/images/ajax/Underline.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Left" onmouseover="btnOver();" onclick="AlignLeft();"
onmouseout="btnOut();">
<img alt="左对齐" title="左对齐" src="Resources/images/ajax/AlignLeft.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Center" onmouseover="btnOver();" onclick="AlignCenter();"
onmouseout="btnOut();">
<img alt="居中对齐" title="居中对齐" src="Resources/images/ajax/AlignMiddle.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Right" onmouseover="btnOver();" onclick="AlignRight();"
onmouseout="btnOut();">
<img alt="右对齐" title="右对齐" src="Resources/images/ajax/AlignRight.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnmerge" id="btnmerge" onmouseover="btnOver();" onclick="MergeCell();"
onmouseout="btnOut();">
<img alt="合并" title="合并" src="Resources/images/ajax/MergeCenter.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnInsertRow" id="btnInsertRow" onmouseover="btnOver();" onclick="InsertRow();"
onmouseout="btnOut();">
<img alt="插入行" title="插入行" src="Resources/images/ajax/InsertRow.png" border="0" />
</td>
<td class="btnDeleteRow" id="btnDeleteRow" onmouseover="btnOver();" onclick="DeleteRow();"
onmouseout="btnOut();">
<img alt="删除行" title="删除行" src="Resources/images/ajax/DeleteRow.png" border="0" />
</td>
<td class="btnRowHeight" id="btnRowHeight" onmouseover="btnOver();" onclick="RowHeight();"
onmouseout="btnOut();">
<img alt="行高" title="行高" src="Resources/images/ajax/RowHeight.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnInsertColumn" id="btnInsertColumn" onmouseover="btnOver();" onclick="InsertColumn();"
onmouseout="btnOut();">
<img alt="插入列" title="插入列" src="Resources/images/ajax/InsertColumn.png" border="0" />
</td>
<td class="btnDeleteColumn" id="btnDeleteColumn" onmouseover="btnOver();" onclick="DeleteColumn();"
onmouseout="btnOut();">
<img alt="删除列" title="删除列" src="Resources/images/ajax/DeleteColumn.png" border="0" />
</td>
<td class="btnColumnWidth" id="btnColumnWidth" onmouseover="btnOver();" onclick="ColumnWidth();"
onmouseout="btnOut();">
<img alt="列宽" title="列宽" src="Resources/images/ajax/ColumnWidth.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td style="padding-left: 4px">
<select style="width: 60px" tabindex="-1" onchange="SetFontName(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">字体</option>
<option value="Arial">Arial</option>
<option value="Courier New">Courier New</option>
<option value="Garamond">Garamond</option>
<option value="Georgia">Georgia</option>
<option value="Tahoma">Tahoma</option>
<option value="Times New Roman">Times</option>
<option value="Verdana">Verdana</option>
</select>
</td>
<td style="padding-left: 4px">
<select tabindex="-1" style="width: 60px" onchange="SetFontSize(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">字号</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</td>
<td style="padding-left: 4px">
<select style="width: 75px" tabindex="-1" onchange="SetForeColor(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">前景色</option>
<option style="color: #ffffff; background-color: black" value="#000000">Black</option>
<option style="background-color: gray" value="#808080">Gray</option>
<option style="background-color: #A9A9A9" value="#A9A9A9">DarkGray</option>
<option style="background-color: #D3D3D3" value="#D3D3D3">LightGray</option>
<option style="background-color: white" value="#FFFFFF">White</option>
<option style="background-color: #7FFFD4" value="#7FFFD4">Aquamarine</option>
<option style="background-color: blue" value="#0000FF">Blue</option>
<option style="color: #ffffff; background-color: navy" value="#000080">Navy</option>
<option style="color: #ffffff; background-color: purple" value="#800080">Purple</option>
<option style="background-color: #FF1493" value="#FF1493">DeepPink</option>
<option style="background-color: #EE82EE" value="#EE82EE">Violet</option>
<option style="background-color: #FFC0CB" value="#FFC0CB">Pink</option>
<option style="color: #ffffff; background-color: #006400" value="#006400">DarkGreen</option>
<option style="color: #ffffff; background-color: green" value="#008000">Green</option>
<option style="background-color: #9ACD32" value="#9ACD32">YellowGreen</option>
<option style="background-color: yellow" value="#FFFF00">Yellow</option>
<option style="background-color: #FFA500" value="#FFA500">Orange</option>
<option style="background-color: red" value="#FF0000">Red</option>
<option style="background-color: #A52A2A" value="#A52A2A">Brown</option>
<option style="background-color: #DEB887" value="#DEB887">BurlyWood</option>
<option style="background-color: #F5F5DC" value="#F5F5DC">Beige</option>
</select>
</td>
<td style="padding-left: 4px">
<select style="width: 75px" tabindex="-1" onchange="SetBackColor(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">背景色</option>
<option style="color: #ffffff; background-color: black" value="#000000">Black</option>
<option style="background-color: gray" value="#808080">Gray</option>
<option style="background-color: #A9A9A9" value="#A9A9A9">DarkGray</option>
<option style="background-color: #D3D3D3" value="#D3D3D3">LightGray</option>
<option style="background-color: white" value="#FFFFFF">White</option>
<option style="background-color: #7FFFD4" value="#7FFFD4">Aquamarine</option>
<option style="background-color: blue" value="#0000FF">Blue</option>
<option style="color: #ffffff; background-color: navy" value="#000080">Navy</option>
<option style="color: #ffffff; background-color: purple" value="#800080">Purple</option>
<option style="background-color: #FF1493" value="#FF1493">DeepPink</option>
<option style="background-color: #EE82EE" value="#EE82EE">Violet</option>
<option style="background-color: #FFC0CB" value="#FFC0CB">Pink</option>
<option style="color: #ffffff; background-color: #006400" value="#006400">DarkGreen</option>
<option style="color: #ffffff; background-color: green" value="#008000">Green</option>
<option style="background-color: #9ACD32" value="#9ACD32">YellowGreen</option>
<option style="background-color: yellow" value="#FFFF00">Yellow</option>
<option style="background-color: #FFA500" value="#FFA500">Orange</option>
<option style="background-color: red" value="#FF0000">Red</option>
<option style="background-color: #A52A2A" value="#A52A2A">Brown</option>
<option style="background-color: #DEB887" value="#DEB887">BurlyWood</option>
<option style="background-color: #F5F5DC" value="#F5F5DC">Beige</option>
</select>
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div style="width: 1010px; margin-left: 0px; margin-top: 0px; margin-bottom: 150px;
border-width: 1px; border-color: Black; border-style: none; position: absolute;">
<div>
<FarPoint:FpSpread ID="fpTemplate" runat="server" BorderColor="Black" BorderStyle="Solid"
BorderWidth="1px" Height="600px" Width="100%" ActiveSheetViewIndex="0" DesignString="<?xml version="1.0" encoding="utf-8"?><Spread><NamedStyles><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-0" Parent="DataAreaDefault"><CellType class="FarPoint.Web.Spread.GeneralCellType"><AllowWrap>False</AllowWrap><IsDateFormat>False</IsDateFormat><GeneralCellType /></CellType><Font><Name>Calibri</Name><Names><Name>Calibri</Name></Names><Size>11pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>0</GdiCharSet><ForeColor>WindowText</ForeColor><Locked>True</Locked><VerticalAlign>Bottom</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-1"><CellType class="FarPoint.Web.Spread.GeneralCellType"><AllowWrap>False</AllowWrap><IsDateFormat>False</IsDateFormat><GeneralCellType /></CellType><Font><Name>Calibri</Name><Names><Name>Calibri</Name></Names><Size>18pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>0</GdiCharSet><ForeColor>WindowText</ForeColor><Locked>True</Locked><VerticalAlign>Bottom</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-2"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-3"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-4"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.TextCellType"><Multiline>True</Multiline><ErrorMsg>最大文本长度为{0}</ErrorMsg><TextCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-5"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Left</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-6"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Left</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-7"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>18pt</Size><Bold>True</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-8"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle></NamedStyles></Spread>"
OnButtonCommand="fpTemplate_ButtonCommand">
<TouchInfo SelectionGripperLineColor=""></TouchInfo>
<CommandBar ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight" ButtonShadowColor="ControlDark">
<Background BackgroundImageUrl="SPREADCLIENTPATH:/img/cbbg.gif"></Background>
</CommandBar>
<Sheets>
<FarPoint:SheetView SheetName="项目情况" DesignString="<?xml version="1.0" encoding="utf-8"?><Sheet><Data><RowHeader class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="7" columns="1"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></RowHeader><ColumnHeader class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="9"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></ColumnHeader><DataArea class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="7" columns="9"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>100</MaximumIterations><MaximumChange>0.001</MaximumChange><SheetName>项目情况</SheetName><NamedExpressions><NamedExpression><Name>QYDM</Name><Value>项目情况!R3C2</Value></NamedExpression><NamedExpression><Name>SSZX</Name><Value>项目情况!R2C8</Value></NamedExpression><NamedExpression><Name>SSHY</Name><Value>项目情况!R2C4</Value></NamedExpression><NamedExpression><Name>QYMC</Name><Value>项目情况!R3C4</Value></NamedExpression><NamedExpression><Name>ZYPJ</Name><Value>项目情况!R6C2</Value></NamedExpression><NamedExpression><Name>XMMC</Name><Value>项目情况!R4C2</Value></NamedExpression><NamedExpression><Name>XMQZNX</Name><Value>项目情况!R5C9</Value></NamedExpression><NamedExpression><Name>ZXDM</Name><Value>项目情况!R2C6</Value></NamedExpression><NamedExpression><Name>PJYY</Name><Value>项目情况!R7C2</Value></NamedExpression><NamedExpression><Name>XMZZR</Name><Value>项目情况!R3C9</Value></NamedExpression><NamedExpression><Name>XMJSDD</Name><Value>项目情况!R5C2</Value></NamedExpression><NamedExpression><Name>ZRRLXDH</Name><Value>项目情况!R4C9</Value></NamedExpression><NamedExpression><Name>HYDM</Name><Value>项目情况!R2C2</Value></NamedExpression></NamedExpressions><Cells><Cell row="0" column="0"><Data type="System.String">项 目 基 本 情 况 表</Data></Cell><Cell row="1" column="0"><Data type="System.String">行业代码</Data></Cell><Cell row="1" column="2"><Data type="System.String">所属行业</Data></Cell><Cell row="1" column="4"><Data type="System.String">专项代码</Data></Cell><Cell row="1" column="6"><Data type="System.String">所属专项</Data></Cell><Cell row="2" column="0"><Data type="System.String">企业代码</Data></Cell><Cell row="2" column="2"><Data type="System.String">企业名称</Data></Cell><Cell row="2" column="7"><Data type="System.String">项目责任人</Data></Cell><Cell row="3" column="0"><Data type="System.String">项目名称</Data></Cell><Cell row="3" column="7"><Data type="System.String">责任人联系电话</Data></Cell><Cell row="4" column="0"><Data type="System.String">项目建设地点</Data></Cell><Cell row="4" column="7"><Data type="System.String">项目起止年限</Data></Cell><Cell row="5" column="0"><Data type="System.String">发展的主要瓶颈:
1、产品现状(能力、水平、市场占有率、国内每年进口总量)等;
2、与国际水平相比差距;</Data></Cell><Cell row="6" column="0"><Data type="System.String">形成瓶颈的原因:
(指主要生产环节存在的工艺、技术、装备等方面的差距)</Data></Cell></Cells></DataArea><SheetCorner class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="1"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></SheetCorner><ColumnFooter class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="9"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></ColumnFooter></Data><Presentation><Protect>False</Protect><ActiveSkin class="dm"><Name>Office2013</Name><BackColor>Empty</BackColor><CellBackColor>Empty</CellBackColor><CellForeColor>#00003a</CellForeColor><CellSpacing>0</CellSpacing><GridLines>Both</GridLines><GridLineColor>#d0d7e5</GridLineColor><HeaderBackColor>White</HeaderBackColor><HeaderForeColor>Empty</HeaderForeColor><FlatColumnHeader>False</FlatColumnHeader><FooterBackColor>Empty</FooterBackColor><FooterForeColor>Empty</FooterForeColor><FlatColumnFooter>False</FlatColumnFooter><FlatRowHeader>False</FlatRowHeader><HeaderFontBold>False</HeaderFontBold><FooterFontBold>False</FooterFontBold><SelectionBackColor>#c6c6c6</SelectionBackColor><SelectionForeColor>#2d0000</SelectionForeColor><EvenRowBackColor>Empty</EvenRowBackColor><OddRowBackColor>Empty</OddRowBackColor><ShowColumnHeader>True</ShowColumnHeader><ShowColumnFooter>False</ShowColumnFooter><ShowRowHeader>True</ShowRowHeader><ColumnHeaderBackground class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/chm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>left bottom</BackgroundPosition></ColumnHeaderBackground><RowHeaderBackground class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/rhm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>right top</BackgroundPosition></RowHeaderBackground><SheetCornerBackground class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/hm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>left bottom</BackgroundPosition></SheetCornerBackground><HeaderGrayAreaColor>White</HeaderGrayAreaColor><FilterBarBackColor>White</FilterBarBackColor><FilterBarForeColor>Empty</FilterBarForeColor><FilterBarHeaderBackColor>White</FilterBarHeaderBackColor><FilterBarHeaderForeColor>Empty</FilterBarHeaderForeColor><ShowFilterBar>False</ShowFilterBar><FilterBarHeaderParent>RowHeaderDefault</FilterBarHeaderParent><FilterBarParent>FilterBarDefault</FilterBarParent></ActiveSkin><HeaderGrayAreaColor>White</HeaderGrayAreaColor><AxisModels><Row class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="20" orientation="Vertical" count="7"><Items><Item index="-1"><Size>20</Size></Item><Item index="0"><Size>40</Size></Item><Item index="1"><Size>27</Size></Item><Item index="2"><Size>27</Size></Item><Item index="3"><Size>27</Size></Item><Item index="4"><Size>27</Size></Item><Item index="5"><Size>93</Size></Item><Item index="6"><Size>80</Size></Item></Items></Row><Column class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="64" orientation="Horizontal" count="9"><Items><Item index="-1"><SortIndicator>Ascending</SortIndicator><Size>64</Size></Item><Item index="0"><Size>194</Size></Item><Item index="1"><Size>89</Size></Item><Item index="2"><Size>89</Size></Item><Item index="3"><Size>89</Size></Item><Item index="4"><Size>89</Size></Item><Item index="5"><Size>89</Size></Item><Item index="6"><Size>89</Size></Item><Item index="7"><Size>96</Size></Item><Item index="8"><Size>110</Size></Item></Items></Column><RowHeaderColumn class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="40" orientation="Horizontal" count="1"><Items><Item index="-1"><SortIndicator>Ascending</SortIndicator><Size>40</Size></Item></Items></RowHeaderColumn><ColumnHeaderRow class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="22" orientation="Vertical" count="1"><Items><Item index="-1"><Size>22</Size></Item></Items></ColumnHeaderRow><ColumnFooterRow class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="22" orientation="Vertical" count="1"><Items><Item index="-1"><Size>22</Size></Item></Items></ColumnFooterRow></AxisModels><SpanModels><DataArea class="FarPoint.Web.Spread.Model.DefaultSheetSpanModel"><CellRange Row="6" Column="1" RowCount="1" ColumnCount="8" /><CellRange Row="0" Column="0" RowCount="1" ColumnCount="9" /><CellRange Row="1" Column="7" RowCount="1" ColumnCount="2" /><CellRange Row="2" Column="3" RowCount="1" ColumnCount="4" /><CellRange Row="3" Column="1" RowCount="1" ColumnCount="6" /><CellRange Row="5" Column="1" RowCount="1" ColumnCount="8" /><CellRange Row="4" Column="1" RowCount="1" ColumnCount="6" /></DataArea></SpanModels><StyleModels><RowHeader class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="7" Columns="1"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="RowHeaderDefault"><BackColor>White</BackColor><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/rhm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>right top</BackgroundPosition></Background></DefaultStyle><ConditionalFormatCollections /></RowHeader><ColumnHeader class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="9"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="ColumnHeaderDefault"><BackColor>White</BackColor><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/chm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>left bottom</BackgroundPosition></Background></DefaultStyle><ConditionalFormatCollections /></ColumnHeader><DataArea class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="7" Columns="9"><AltRowCount>2</AltRowCount><DefaultStyle Name="x-1-0" /><RowStyles><RowStyle Index="0" Name="x-1-1" /></RowStyles><CellStyles><CellStyle Row="0" Column="0"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>18pt</s><b>True</b></n><GdiCharSet>134</GdiCharSet><h>Center</h><l>True</l><v>Middle</v></CellStyle><CellStyle Row="0" Column="1" Name="x-1-7" /><CellStyle Row="0" Column="2" Name="x-1-7" /><CellStyle Row="0" Column="3" Name="x-1-7" /><CellStyle Row="0" Column="4" Name="x-1-7" /><CellStyle Row="0" Column="5" Name="x-1-7" /><CellStyle Row="0" Column="6" Name="x-1-7" /><CellStyle Row="0" Column="7" Name="x-1-7" /><CellStyle Row="0" Column="8" Name="x-1-7" /><CellStyle Row="1" Column="0" Name="x-1-2" /><CellStyle Row="1" Column="1" Name="x-1-3" /><CellStyle Row="1" Column="2" Name="x-1-2" /><CellStyle Row="1" Column="3" Name="x-1-3" /><CellStyle Row="1" Column="4" Name="x-1-2" /><CellStyle Row="1" Column="5" Name="x-1-3" /><CellStyle Row="1" Column="6" Name="x-1-2" /><CellStyle Row="1" Column="7"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Center</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="1" Column="8" Name="x-1-8" /><CellStyle Row="2" Column="0" Name="x-1-2" /><CellStyle Row="2" Column="1" Name="x-1-3" /><CellStyle Row="2" Column="2" Name="x-1-2" /><CellStyle Row="2" Column="3"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Center</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="2" Column="4" Name="x-1-8" /><CellStyle Row="2" Column="5" Name="x-1-8" /><CellStyle Row="2" Column="6" Name="x-1-8" /><CellStyle Row="2" Column="7" Name="x-1-2" /><CellStyle Row="2" Column="8" Name="x-1-3" /><CellStyle Row="3" Column="0" Name="x-1-2" /><CellStyle Row="3" Column="1"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Left</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="3" Column="2" Name="x-1-6" /><CellStyle Row="3" Column="3" Name="x-1-6" /><CellStyle Row="3" Column="4" Name="x-1-6" /><CellStyle Row="3" Column="5" Name="x-1-6" /><CellStyle Row="3" Column="6" Name="x-1-6" /><CellStyle Row="3" Column="7" Name="x-1-2" /><CellStyle Row="3" Column="8" Name="x-1-3" /><CellStyle Row="4" Column="0" Name="x-1-2" /><CellStyle Row="4" Column="1"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Left</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="4" Column="2" Name="x-1-6" /><CellStyle Row="4" Column="3" Name="x-1-6" /><CellStyle Row="4" Column="4" Name="x-1-6" /><CellStyle Row="4" Column="5" Name="x-1-6" /><CellStyle Row="4" Column="6" Name="x-1-6" /><CellStyle Row="4" Column="7" Name="x-1-4" /><CellStyle Row="4" Column="8" Name="x-1-3" /><CellStyle Row="5" Column="0" Name="x-1-5" /><CellStyle Row="5" Column="1"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Left</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="5" Column="2" Name="x-1-6" /><CellStyle Row="5" Column="3" Name="x-1-6" /><CellStyle Row="5" Column="4" Name="x-1-6" /><CellStyle Row="5" Column="5" Name="x-1-6" /><CellStyle Row="5" Column="6" Name="x-1-6" /><CellStyle Row="5" Column="7" Name="x-1-6" /><CellStyle Row="5" Column="8" Name="x-1-6" /><CellStyle Row="6" Column="0" Name="x-1-5" /><CellStyle Row="6" Column="1"><d class="FarPoint.Web.Spread.Border" xn="1"><b c="WindowText" s="1" t="Solid" /><l c="WindowText" s="1" t="Solid" /><r c="WindowText" s="1" t="Solid" /><t c="WindowText" s="1" t="Solid" /></d><c class="FarPoint.Web.Spread.GeneralCellType"><i>False</i><l>True</l><g /></c><n><n>微软雅黑</n><ns><n>微软雅黑</n></ns><s>9pt</s></n><GdiCharSet>134</GdiCharSet><h>Left</h><l>False</l><v>Middle</v></CellStyle><CellStyle Row="6" Column="2" Name="x-1-6" /><CellStyle Row="6" Column="3" Name="x-1-6" /><CellStyle Row="6" Column="4" Name="x-1-6" /><CellStyle Row="6" Column="5" Name="x-1-6" /><CellStyle Row="6" Column="6" Name="x-1-6" /><CellStyle Row="6" Column="7" Name="x-1-6" /><CellStyle Row="6" Column="8" Name="x-1-6" /></CellStyles><ConditionalFormatCollections /></DataArea><SheetCorner class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="1"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="CornerDefault"><BackColor>White</BackColor><Border class="FarPoint.Web.Spread.Border" Size="1" Style="Solid"><Bottom Color="ControlDark" /><Left Size="0" /><Right Color="ControlDark" /><Top Size="0" /></Border><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/hm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>left bottom</BackgroundPosition></Background></DefaultStyle><ConditionalFormatCollections /></SheetCorner><ColumnFooter class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="9"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="ColumnFooterDefault"><BackColor>White</BackColor></DefaultStyle><ConditionalFormatCollections /></ColumnFooter></StyleModels><MessageRowStyle class="FarPoint.Web.Spread.Appearance"><BackColor>LightYellow</BackColor><ForeColor>Red</ForeColor></MessageRowStyle><SheetCornerStyle class="FarPoint.Web.Spread.NamedStyle" Parent="CornerDefault"><BackColor>White</BackColor><Border class="FarPoint.Web.Spread.Border" Size="1" Style="Solid"><Bottom Color="ControlDark" /><Left Size="0" /><Right Color="ControlDark" /><Top Size="0" /></Border><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/tp.png</BackgroundImageUrl><SelectedBackgroundImageUrl>SPREADCLIENTPATH:/img/hm13.gif</SelectedBackgroundImageUrl><BackgroundPosition>left bottom</BackgroundPosition></Background></SheetCornerStyle><AllowLoadOnDemand>false</AllowLoadOnDemand><LoadRowIncrement >10</LoadRowIncrement ><LoadInitRowCount >30</LoadInitRowCount ><LoadOnDemandMode >Standard</LoadOnDemandMode ><LoadOnDemandInterval >500</LoadOnDemandInterval ><LoadOnDemandTriggerMode >Timed</LoadOnDemandTriggerMode ><LoadOffsetFromBottom >0</LoadOffsetFromBottom ><AllowVirtualScrollPaging>false</AllowVirtualScrollPaging><VirtualScrollPagingPrevRowCount>0</VirtualScrollPagingPrevRowCount><VirtualScrollPagingFormatString>第{page}页 共{count}页</VirtualScrollPagingFormatString><TopRow>0</TopRow><PreviewRowStyle class="FarPoint.Web.Spread.PreviewRowInfo" /><FilterBar class="FarPoint.Web.Spread.FilterBar"><Height>22</Height><IndicatorCssClass /><Style class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="2" Columns="9"><AltRowCount>2</AltRowCount><NamedStyles class="FarPoint.Web.Spread.NamedStyleCollection"><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-0" Parent="DataAreaDefault"><CellType class="FarPoint.Web.Spread.GeneralCellType"><AllowWrap>False</AllowWrap><IsDateFormat>False</IsDateFormat><GeneralCellType /></CellType><Font><Name>Calibri</Name><Names><Name>Calibri</Name></Names><Size>11pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>0</GdiCharSet><ForeColor>WindowText</ForeColor><Locked>True</Locked><VerticalAlign>Bottom</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-1"><CellType class="FarPoint.Web.Spread.GeneralCellType"><AllowWrap>False</AllowWrap><IsDateFormat>False</IsDateFormat><GeneralCellType /></CellType><Font><Name>Calibri</Name><Names><Name>Calibri</Name></Names><Size>18pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>0</GdiCharSet><ForeColor>WindowText</ForeColor><Locked>True</Locked><VerticalAlign>Bottom</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-2"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-3"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-4"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.TextCellType"><Multiline>True</Multiline><ErrorMsg>最大文本长度为{0}</ErrorMsg><TextCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-5"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Left</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-6"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Left</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-7"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>18pt</Size><Bold>True</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>True</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle><NamedStyle class="FarPoint.Web.Spread.NamedStyle" Name="x-1-8"><Border class="FarPoint.Web.Spread.Border"><Bottom Color="WindowText" Size="1" Style="Solid" /><Left Color="WindowText" Size="1" Style="Solid" /><Right Color="WindowText" Size="1" Style="Solid" /><Top Color="WindowText" Size="1" Style="Solid" /></Border><CellType class="FarPoint.Web.Spread.GeneralCellType"><IsDateFormat>False</IsDateFormat><Multiline>True</Multiline><GeneralCellType /></CellType><Font><Name>微软雅黑</Name><Names><Name>微软雅黑</Name></Names><Size>9pt</Size><Bold>False</Bold><Italic>False</Italic><Overline>False</Overline><Strikeout>False</Strikeout><Underline>False</Underline></Font><GdiCharSet>134</GdiCharSet><HorizontalAlign>Center</HorizontalAlign><Locked>False</Locked><VerticalAlign>Middle</VerticalAlign></NamedStyle></NamedStyles><RowStyles><RowStyle Index="0" class="FarPoint.Web.Spread.FilterBarStyleInfo" Parent="FilterBarDefault"><BackColor>White</BackColor></RowStyle><RowStyle Index="1" class="FarPoint.Web.Spread.FilterBarStyleInfo" Parent="RowHeaderDefault"><BackColor>White</BackColor></RowStyle></RowStyles><ConditionalFormatCollections /></Style></FilterBar></Presentation><Settings><Name>项目情况</Name><Categories><Appearance><SelectionForeColor>#2d0000</SelectionForeColor><GridLineColor>#d0d7e5</GridLineColor><DefaultStyleName>x-1-0</DefaultStyleName><HeaderGrayAreaColor>White</HeaderGrayAreaColor><SelectionBackColor>#c6c6c6</SelectionBackColor><SelectionForeColor>#2d0000</SelectionForeColor><SelectionBorder class="FarPoint.Web.Spread.Border" /></Appearance><Behavior><EditTemplateColumnCount>2</EditTemplateColumnCount><SelectionPolicy>MultiRange</SelectionPolicy><GroupBarText>拖放一个列以便按照该列进行分组。</GroupBarText></Behavior><Layout><RowHeaderColumnCount>1</RowHeaderColumnCount><DefaultColumnWidth>64</DefaultColumnWidth><DefaultRowHeight>20</DefaultRowHeight><ColumnHeaderRowCount>1</ColumnHeaderRowCount><RowCount>7</RowCount><ColumnCount>9</ColumnCount></Layout></Categories><ActiveRow>1</ActiveRow><ActiveColumn>1</ActiveColumn><ColumnHeaderRowCount>1</ColumnHeaderRowCount><ColumnFooterRowCount>1</ColumnFooterRowCount><PrintInfo><Header /><Footer /><ZoomFactor>1</ZoomFactor><FirstPageNumber>1</FirstPageNumber><Orientation>Portrait</Orientation><PrintType>All</PrintType><PageOrder>DownThenOver</PageOrder><BestFitCols>False</BestFitCols><BestFitRows>False</BestFitRows><PageStart>-1</PageStart><PageEnd>-1</PageEnd><ColStart>-1</ColStart><ColEnd>-1</ColEnd><RowStart>-1</RowStart><RowEnd>-1</RowEnd><ShowBorder>False</ShowBorder><ShowGrid>False</ShowGrid><ShowColor>True</ShowColor><ShowColumnHeader>Hide</ShowColumnHeader><ShowRowHeader>Hide</ShowRowHeader><ShowFilterBar>Inherit</ShowFilterBar><ShowColumnFooter>Inherit</ShowColumnFooter><ShowColumnFooterEachPage>True</ShowColumnFooterEachPage><ShowTitle>True</ShowTitle><ShowSubtitle>True</ShowSubtitle><UseMax>True</UseMax><UseSmartPrint>False</UseSmartPrint><Margin><Top>72</Top><Left>67</Left><Right>67</Right><Bottom>72</Bottom><Header>28</Header><Footer>28</Footer></Margin><Opacity>255</Opacity><PrintNotes>None</PrintNotes><PaperSize><Height>1100</Height><Kind>Custom</Kind><PaperName>Letter</PaperName><Width>850</Width></PaperSize><PaperSize class="System.Drawing.Printing.PaperSize" assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" encoded="true">AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAAAAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18ACAIAAAAAAAAABgQAAAAGTGV0dGVyUgMAAEwEAAAACw==</PaperSize><Centering>None</Centering><RepeatColStart>-1</RepeatColStart><RepeatColEnd>-1</RepeatColEnd><RepeatRowStart>-1</RepeatRowStart><RepeatRowEnd>-1</RepeatRowEnd><SmartPrintPagesTall>1</SmartPrintPagesTall><SmartPrintPagesWide>1</SmartPrintPagesWide><HeaderHeight>-1</HeaderHeight><FooterHeight>-1</FooterHeight></PrintInfo><TitleInfo class="FarPoint.Web.Spread.TitleInfo"><Style class="FarPoint.Web.Spread.StyleInfo"><BackColor>#e7eff7</BackColor><HorizontalAlign>Right</HorizontalAlign></Style></TitleInfo><LayoutMode>CellLayoutMode</LayoutMode><AutoFilterMode>FilterGadget</AutoFilterMode><CurrentPageIndex type="System.Int32">0</CurrentPageIndex></Settings></Sheet>"
DefaultColumnWidth="64" DefaultRowHeight="20" MaximumIterations="100" SelectionPolicy="MultiRange"
SelectionBackColor="#C6C6C6" SelectionForeColor="#2D0000">
</FarPoint:SheetView>
</Sheets>
<TouchStrips>
<FarPoint:TouchStrip Area="Chart" NoTouchStrip="True">
</FarPoint:TouchStrip>
</TouchStrips>
<TitleInfo BackColor="#E7EFF7" ForeColor="" HorizontalAlign="Center" VerticalAlign="NotSet"
Font-Size="X-Large" Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False">
</TitleInfo>
</FarPoint:FpSpread>
</div>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<div style="visibility: hidden;">
<FarPoint:FpSpread ID="fpDataFields" runat="server" BorderColor="Black" BorderStyle="Solid"
BorderWidth="1px" Height="200px" Width="100%" ActiveSheetViewIndex="0" DesignString="<?xml version="1.0" encoding="utf-8"?><Spread />">
<TouchInfo SelectionGripperLineColor=""></TouchInfo>
<CommandBar BackColor="Control" ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight"
ButtonShadowColor="ControlDark">
<Background BackgroundImageUrl="SPREADCLIENTPATH:/img/cbbg.gif"></Background>
</CommandBar>
<Sheets>
<FarPoint:SheetView SheetName="Sheet1" AllowPage="False" DesignString="<?xml version="1.0" encoding="utf-8"?><Sheet><Data><RowHeader class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="3" columns="1"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></RowHeader><ColumnHeader class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="5"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange><Cells><Cell row="0" column="0"><Data type="System.String">字段编号</Data></Cell><Cell row="0" column="1"><Data type="System.String">字段名称</Data></Cell><Cell row="0" column="2"><Data type="System.String">对应单元格</Data></Cell><Cell row="0" column="3"><Data type="System.String">数据类型</Data></Cell><Cell row="0" column="4"><Data type="System.String">说明</Data></Cell></Cells></ColumnHeader><DataArea class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="3" columns="5"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange><SheetName>Sheet1</SheetName></DataArea><SheetCorner class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="1"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></SheetCorner><ColumnFooter class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="5"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange></ColumnFooter></Data><Presentation><ActiveSkin class="FarPoint.Web.Spread.SheetSkin"><Name>Classic</Name><BackColor>Empty</BackColor><CellBackColor>Empty</CellBackColor><CellForeColor>Empty</CellForeColor><CellSpacing>0</CellSpacing><GridLines>Both</GridLines><GridLineColor>LightGray</GridLineColor><HeaderBackColor>Control</HeaderBackColor><HeaderForeColor>Empty</HeaderForeColor><FlatColumnHeader>False</FlatColumnHeader><FooterBackColor>Empty</FooterBackColor><FooterForeColor>Empty</FooterForeColor><FlatColumnFooter>False</FlatColumnFooter><FlatRowHeader>False</FlatRowHeader><HeaderFontBold>False</HeaderFontBold><FooterFontBold>False</FooterFontBold><SelectionBackColor>LightBlue</SelectionBackColor><SelectionForeColor>Empty</SelectionForeColor><EvenRowBackColor>Empty</EvenRowBackColor><OddRowBackColor>Empty</OddRowBackColor><ShowColumnHeader>True</ShowColumnHeader><ShowColumnFooter>False</ShowColumnFooter><ShowRowHeader>True</ShowRowHeader><ColumnHeaderBackground class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/chm.png</BackgroundImageUrl></ColumnHeaderBackground><SheetCornerBackground class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/chm.png</BackgroundImageUrl></SheetCornerBackground><HeaderGrayAreaColor>Control</HeaderGrayAreaColor><FilterBarBackColor>Control</FilterBarBackColor><FilterBarForeColor>Empty</FilterBarForeColor><FilterBarHeaderBackColor>Control</FilterBarHeaderBackColor><FilterBarHeaderForeColor>Empty</FilterBarHeaderForeColor><ShowFilterBar>False</ShowFilterBar><FilterBarHeaderParent>RowHeaderDefault</FilterBarHeaderParent><FilterBarParent>FilterBarDefault</FilterBarParent></ActiveSkin><HeaderGrayAreaColor>Control</HeaderGrayAreaColor><AxisModels><Column class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" orientation="Horizontal" count="5"><Items><Item index="-1"><SortIndicator>Ascending</SortIndicator></Item><Item index="0"><Visible>False</Visible></Item><Item index="1"><Size>120</Size></Item><Item index="2"><Size>150</Size></Item><Item index="3"><Size>150</Size></Item><Item index="4"><Size>200</Size></Item></Items></Column><RowHeaderColumn class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="30" orientation="Horizontal" count="1"><Items><Item index="-1"><SortIndicator>Ascending</SortIndicator><Size>30</Size></Item></Items></RowHeaderColumn><ColumnHeaderRow class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="22" orientation="Vertical" count="1"><Items><Item index="-1"><Size>22</Size></Item></Items></ColumnHeaderRow><ColumnFooterRow class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" defaultSize="22" orientation="Vertical" count="1"><Items><Item index="-1"><Size>22</Size></Item></Items></ColumnFooterRow></AxisModels><StyleModels><RowHeader class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="3" Columns="1"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="RowHeaderDefault"><BackColor>Control</BackColor></DefaultStyle><ConditionalFormatCollections /></RowHeader><ColumnHeader class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="5"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="ColumnHeaderDefault"><BackColor>Control</BackColor><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/chm.png</BackgroundImageUrl></Background></DefaultStyle><ConditionalFormatCollections /></ColumnHeader><DataArea class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="3" Columns="5"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="DataAreaDefault" /><ConditionalFormatCollections /></DataArea><SheetCorner class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="1"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="CornerDefault"><BackColor>Control</BackColor><Border class="FarPoint.Web.Spread.Border" Size="1" Style="Solid"><Bottom Color="ControlDark" /><Left Size="0" /><Right Color="ControlDark" /><Top Size="0" /></Border><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/chm.png</BackgroundImageUrl></Background></DefaultStyle><ConditionalFormatCollections /></SheetCorner><ColumnFooter class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="1" Columns="5"><AltRowCount>2</AltRowCount><DefaultStyle class="FarPoint.Web.Spread.NamedStyle" Parent="ColumnFooterDefault"><BackColor>Control</BackColor></DefaultStyle><ConditionalFormatCollections /></ColumnFooter></StyleModels><MessageRowStyle class="FarPoint.Web.Spread.Appearance"><BackColor>LightYellow</BackColor><ForeColor>Red</ForeColor></MessageRowStyle><SheetCornerStyle class="FarPoint.Web.Spread.NamedStyle" Parent="CornerDefault"><BackColor>Control</BackColor><Border class="FarPoint.Web.Spread.Border" Size="1" Style="Solid"><Bottom Color="ControlDark" /><Left Size="0" /><Right Color="ControlDark" /><Top Size="0" /></Border><Background class="FarPoint.Web.Spread.Background"><BackgroundImageUrl>SPREADCLIENTPATH:/img/chm.png</BackgroundImageUrl></Background></SheetCornerStyle><AllowLoadOnDemand>false</AllowLoadOnDemand><LoadRowIncrement >10</LoadRowIncrement ><LoadInitRowCount >30</LoadInitRowCount ><LoadOnDemandMode >Standard</LoadOnDemandMode ><LoadOnDemandInterval >500</LoadOnDemandInterval ><LoadOnDemandTriggerMode >Timed</LoadOnDemandTriggerMode ><LoadOffsetFromBottom >0</LoadOffsetFromBottom ><AllowVirtualScrollPaging>false</AllowVirtualScrollPaging><VirtualScrollPagingPrevRowCount>0</VirtualScrollPagingPrevRowCount><VirtualScrollPagingFormatString>第{page}页 共{count}页</VirtualScrollPagingFormatString><TopRow>0</TopRow><PreviewRowStyle class="FarPoint.Web.Spread.PreviewRowInfo" /><FilterBar class="FarPoint.Web.Spread.FilterBar"><Height>22</Height><IndicatorCssClass /><Style class="FarPoint.Web.Spread.Model.DefaultSheetStyleModel" Rows="2" Columns="5"><AltRowCount>2</AltRowCount><RowStyles><RowStyle Index="0" class="FarPoint.Web.Spread.FilterBarStyleInfo" Parent="FilterBarDefault"><BackColor>Control</BackColor></RowStyle><RowStyle Index="1" class="FarPoint.Web.Spread.FilterBarStyleInfo" Parent="RowHeaderDefault"><BackColor>Control</BackColor></RowStyle></RowStyles><ConditionalFormatCollections /></Style></FilterBar></Presentation><Settings><Name>Sheet1</Name><Categories><Appearance><GridLineColor>#d0d7e5</GridLineColor><RowHeaderWidth>30</RowHeaderWidth><HeaderGrayAreaColor>Control</HeaderGrayAreaColor><SelectionBackColor>#eaecf5</SelectionBackColor><SelectionBorder class="FarPoint.Web.Spread.Border" /></Appearance><Behavior><EditTemplateColumnCount>2</EditTemplateColumnCount><AllowPage>False</AllowPage><GroupBarText>拖放一个列以便按照该列进行分组。</GroupBarText></Behavior><Layout><RowHeaderColumnCount>1</RowHeaderColumnCount><FrozenColumnCount>2</FrozenColumnCount><ColumnHeaderRowCount>1</ColumnHeaderRowCount><ColumnCount>5</ColumnCount></Layout></Categories><ActiveRow>0</ActiveRow><ActiveColumn>0</ActiveColumn><ColumnHeaderRowCount>1</ColumnHeaderRowCount><ColumnFooterRowCount>1</ColumnFooterRowCount><PrintInfo><Header /><Footer /><ZoomFactor>0</ZoomFactor><FirstPageNumber>1</FirstPageNumber><Orientation>Auto</Orientation><PrintType>All</PrintType><PageOrder>Auto</PageOrder><BestFitCols>False</BestFitCols><BestFitRows>False</BestFitRows><PageStart>-1</PageStart><PageEnd>-1</PageEnd><ColStart>-1</ColStart><ColEnd>-1</ColEnd><RowStart>-1</RowStart><RowEnd>-1</RowEnd><ShowBorder>True</ShowBorder><ShowGrid>True</ShowGrid><ShowColor>True</ShowColor><ShowColumnHeader>Inherit</ShowColumnHeader><ShowRowHeader>Inherit</ShowRowHeader><ShowFilterBar>Inherit</ShowFilterBar><ShowColumnFooter>Inherit</ShowColumnFooter><ShowColumnFooterEachPage>True</ShowColumnFooterEachPage><ShowTitle>True</ShowTitle><ShowSubtitle>True</ShowSubtitle><UseMax>True</UseMax><UseSmartPrint>False</UseSmartPrint><Opacity>255</Opacity><PrintNotes>None</PrintNotes><Centering>None</Centering><RepeatColStart>-1</RepeatColStart><RepeatColEnd>-1</RepeatColEnd><RepeatRowStart>-1</RepeatRowStart><RepeatRowEnd>-1</RepeatRowEnd><SmartPrintPagesTall>1</SmartPrintPagesTall><SmartPrintPagesWide>1</SmartPrintPagesWide><HeaderHeight>-1</HeaderHeight><FooterHeight>-1</FooterHeight></PrintInfo><TitleInfo class="FarPoint.Web.Spread.TitleInfo"><Style class="FarPoint.Web.Spread.StyleInfo"><BackColor>#e7eff7</BackColor><HorizontalAlign>Right</HorizontalAlign></Style></TitleInfo><WorksheetTemplate class="FarPoint.Web.Spread.WorksheetTemplate"><Layout><ColumnCount>4</ColumnCount></Layout><AxisModels><LayoutColumn class="FarPoint.Web.Spread.Model.DefaultSheetAxisModel" orientation="Horizontal" count="4"><Items><Item index="-1"><SortIndicator>Ascending</SortIndicator></Item></Items></LayoutColumn></AxisModels><Data><LayoutData class="FarPoint.Web.Spread.Model.DefaultSheetDataModel" rows="1" columns="4"><AutoCalculation>True</AutoCalculation><AutoGenerateColumns>True</AutoGenerateColumns><ReferenceStyle>A1</ReferenceStyle><Iteration>False</Iteration><MaximumIterations>1</MaximumIterations><MaximumChange>0.001</MaximumChange><Cells><Cell row="0" column="0"><Data type="System.Int32">0</Data></Cell><Cell row="0" column="1"><Data type="System.Int32">1</Data></Cell><Cell row="0" column="2"><Data type="System.Int32">2</Data></Cell><Cell row="0" column="3"><Data type="System.Int32">3</Data></Cell></Cells></LayoutData></Data></WorksheetTemplate><LayoutMode>CellLayoutMode</LayoutMode><AutoFilterMode>FilterGadget</AutoFilterMode><CurrentPageIndex type="System.Int32">0</CurrentPageIndex></Settings></Sheet>"
GridLineColor="#D0D7E5" SelectionBackColor="#EAECF5" FrozenColumnCount="2" RowHeaderWidth="30">
<RowHeader Width="30" />
</FarPoint:SheetView>
</Sheets>
<TouchStrips>
<FarPoint:TouchStrip Area="Chart" NoTouchStrip="True">
</FarPoint:TouchStrip>
</TouchStrips>
<TitleInfo BackColor="#E7EFF7" ForeColor="" HorizontalAlign="Center" VerticalAlign="NotSet"
Font-Size="X-Large" Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False">
</TitleInfo>
</FarPoint:FpSpread>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<asp:HiddenField ID="hfTemplateID" runat="server" />
<asp:HiddenField ID="hfSourceID" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )