您目前尚未登陆,请选择【登陆】或【注册
首页->行政办公->科信客户关系管理系统源码>>CompanyManages2.aspx>>代码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:科信客户关系管理系统源码


当前文件路径:KeXinCrm/CompanyManages2.aspx 文件类型
普通视图
		            
1<%@ Page language="c#" Codebehind="CompanyManages2.aspx.cs" AutoEventWireup="True" Inherits="CRMS.CompanyManages2" %> 2<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 3<HTML> 4 <HEAD> 5 <TITLE>MyCompany</TITLE> 6 <META http-equiv="Content-Type" content="text/html; charset=gb2312"> 7 <LINK href="css.css" type="text/css" rel="stylesheet"> 8 <meta content="False" name="vs_showGrid"> 9 <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> 10 <meta content="C#" name="CODE_LANGUAGE"> 11 <meta content="JavaScript" name="vs_defaultClientScript"> 12 <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema"> 13 </HEAD> 14 <body MS_POSITIONING="GridLayout"> 15 <form id="Form1" method="post" runat="server"> 16 <table cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 17 <tr> 18 <td><!-- #include virtual="top.htm" --></td> 19 </tr> 20 </table> 21 <br> 22 <br> 23 <table cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 24 <tr> 25 <td width="231" height="7"><IMG height="7" src="images/top02.gif" width="231"></td> 26 <td width="92%" background="images/top03.gif" height="7"></td> 27 </tr> 28 </table> 29 <table cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 30 <tr> 31 <td align="center"><asp:datagrid id="dg1" runat="server" HorizontalAlign="Left" PageSize="15" PagerStyle-HorizontalAlign="Right" 32 PagerStyle-Mode="NumericPages" AllowSorting="True" AutoGenerateColumns="False" Width="886px" BorderColor="#CC9966" 33 BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4" AllowPaging="True"> 34 <SelectedItemStyle Font-Bold="True" ForeColor="#663399" BackColor="#FFCC66"></SelectedItemStyle> 35 <ItemStyle Font-Size="X-Small" HorizontalAlign="Center" ForeColor="#330099" VerticalAlign="Middle" 36 BackColor="White"></ItemStyle> 37 <HeaderStyle Font-Size="X-Small" Font-Bold="True" HorizontalAlign="Center" Height="10px" ForeColor="#FFFFCC" 38 VerticalAlign="Top" BackColor="#990000"></HeaderStyle> 39 <FooterStyle Font-Size="XX-Small" HorizontalAlign="Center" Height="10px" ForeColor="#330099" 40 VerticalAlign="Bottom" BackColor="#FFFFCC"></FooterStyle> 41 <Columns> 42 <asp:TemplateColumn HeaderText="企业状态"> 43 <ItemTemplate> 44 <asp:Label ID="Label1" runat="server"> 45 <%#DataBinder.Eval(Container.DataItem,"Operation").ToString()%> 46 </asp:Label> 47 </ItemTemplate> 48 </asp:TemplateColumn> 49 <asp:TemplateColumn HeaderText="客户名称"> 50 <ItemTemplate> 51 <asp:Label id="Label2" runat="server"> 52 <%# DataBinder.Eval(Container.DataItem,"CompanyName").ToString() %> 53 </asp:Label> 54 </ItemTemplate> 55 </asp:TemplateColumn> 56 <asp:TemplateColumn HeaderText="联系人"> 57 <ItemTemplate> 58 <asp:Label ID="Label3" runat="server"> 59 <%#DataBinder.Eval(Container.DataItem,"CompanyContact").ToString()%> 60 </asp:Label> 61 </ItemTemplate> 62 </asp:TemplateColumn> 63 <asp:TemplateColumn HeaderText="电话"> 64 <ItemTemplate> 65 <asp:Label ID="Label4" runat="server"> 66 <%#DataBinder.Eval(Container.DataItem,"Telephone").ToString()%> 67 </asp:Label> 68 </ItemTemplate> 69 </asp:TemplateColumn> 70 <asp:TemplateColumn HeaderText="手机"> 71 <ItemTemplate> 72 <asp:Label ID="Label5" runat="server"> 73 <%#DataBinder.Eval(Container.DataItem,"Cellphone").ToString()%> 74 </asp:Label> 75 </ItemTemplate> 76 </asp:TemplateColumn> 77 <asp:TemplateColumn HeaderText="所有者"> 78 <ItemTemplate> 79 <asp:HyperLink ID="Hyperlink3" runat="server" NavigateUrl=' 80 <%#"UserCompany.aspx?MemberName="+DataBinder.Eval(Container.DataItem,"MemberName").ToString()+"&Operation="+DataBinder.Eval(Container.DataItem,"Operation").ToString()%>'> 81 <%#DataBinder.Eval(Container.DataItem,"RealName").ToString()%> 82 </asp:HyperLink> 83 </ItemTemplate> 84 </asp:TemplateColumn> 85 <asp:TemplateColumn HeaderText="添加时间"> 86 <ItemTemplate> 87 <asp:Label ID="Label7" runat="server"> 88 <%#DataBinder.Eval(Container.DataItem,"addtime").ToString()%> 89 </asp:Label> 90 </ItemTemplate> 91 </asp:TemplateColumn> 92 <asp:TemplateColumn HeaderText="操作"> 93 <ItemTemplate> 94 <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%#"MyCompanyEdit.aspx?CompanyID="+DataBinder.Eval(Container.DataItem,"CompanyID").ToString()%>'> 95 <img src="images/icon_edit.gif" border="0" alt="编辑客户"></asp:HyperLink> 96 <asp:HyperLink ID="HyperLink2" runat="server" onclick="return confirm('您确定要删除吗?')" NavigateUrl='<%#"MyCompanyDel.aspx?CompanyID="+DataBinder.Eval(Container.DataItem,"CompanyID").ToString()%>'> 97 <img src="images/icon_delete.gif" border="0" alt="删除客户"></asp:HyperLink> 98 </ItemTemplate> 99 </asp:TemplateColumn> 100 </Columns> 101 <PagerStyle HorizontalAlign="Center" ForeColor="#330099" BackColor="#FFFFCC"></PagerStyle> 102 </asp:datagrid></td> 103 </tr> 104 </table> 105 <TABLE cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 106 <TR> 107 <TD height="30">&nbsp; 108 <asp:Button id="Button1" runat="server" Text="导出数据到Excel" onclick="Button1_Click"></asp:Button></TD> 109 </TR> 110 </TABLE> 111 </form> 112 </body> 113</HTML> 114
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:科信客户关系管理系统源码

- 小胡商情网V2.0

- 南充人NET3.5开发的AJAX无刷..

- 勤网爱问v2008学习版项目源码

- EduMis信息发布系统源码

- Asp.net简单投票系统源码

- Asp.net弹出对话框汉化修正版..

- 衣购网站项目(三层开发)源码

- Asp.net考勤系统源码

51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号