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


当前文件路径:KeXinCrm/CompanyManages1.aspx 文件类型
普通视图
		            
1<%@ Page language="c#" Codebehind="CompanyManages1.aspx.cs" AutoEventWireup="True" Inherits="CRMS.CompanyManages1" %> 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 <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0"> 23 <tr> 24 <td><img src="images/yx.gif" width="237" height="28"></td> 25 </tr> 26 </table> 27 <table cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 28 <tr> 29 <td align="center"><asp:datagrid id="dg1" runat="server" HorizontalAlign="Left" PageSize="15" PagerStyle-HorizontalAlign="Right" 30 PagerStyle-Mode="NumericPages" AllowSorting="True" AutoGenerateColumns="False" Width="886px" BorderColor="#CC9966" 31 BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4" AllowPaging="True"> 32 <SelectedItemStyle Font-Bold="True" ForeColor="#663399" BackColor="#FFCC66"></SelectedItemStyle> 33 <ItemStyle Font-Size="X-Small" HorizontalAlign="Center" VerticalAlign="Middle" BackColor="White"></ItemStyle> 34 <HeaderStyle Font-Size="X-Small" Font-Bold="True" HorizontalAlign="Center" Height="10px" ForeColor="#FFFFCC" 35 VerticalAlign="Top" BackColor="#990000"></HeaderStyle> 36 <FooterStyle Font-Size="XX-Small" HorizontalAlign="Center" Height="10px" ForeColor="#330099" 37 VerticalAlign="Bottom" BackColor="#FFFFCC"></FooterStyle> 38 <Columns> 39 <asp:TemplateColumn HeaderText="企业状态"> 40 <ItemTemplate> 41 <asp:Label ID="Label1" runat="server"> 42 <%#DataBinder.Eval(Container.DataItem,"Operation").ToString()%> 43 </asp:Label> 44 </ItemTemplate> 45 </asp:TemplateColumn> 46 <asp:TemplateColumn HeaderText="客户名称"> 47 <ItemTemplate> 48 <asp:Label id="Label2" runat="server"> 49 <%# DataBinder.Eval(Container.DataItem,"CompanyName").ToString() %> 50 </asp:Label> 51 </ItemTemplate> 52 </asp:TemplateColumn> 53 <asp:TemplateColumn HeaderText="联系人"> 54 <ItemTemplate> 55 <asp:Label ID="Label3" runat="server"> 56 <%#DataBinder.Eval(Container.DataItem,"CompanyContact").ToString()%> 57 </asp:Label> 58 </ItemTemplate> 59 </asp:TemplateColumn> 60 <asp:TemplateColumn HeaderText="电话"> 61 <ItemTemplate> 62 <asp:Label ID="Label4" runat="server"> 63 <%#DataBinder.Eval(Container.DataItem,"Telephone").ToString()%> 64 </asp:Label> 65 </ItemTemplate> 66 </asp:TemplateColumn> 67 <asp:TemplateColumn HeaderText="手机"> 68 <ItemTemplate> 69 <asp:Label ID="Label5" runat="server"> 70 <%#DataBinder.Eval(Container.DataItem,"Cellphone").ToString()%> 71 </asp:Label> 72 </ItemTemplate> 73 </asp:TemplateColumn> 74 <asp:TemplateColumn HeaderText="所有者"> 75 <ItemTemplate> 76 <asp:HyperLink ID="Hyperlink3" runat="server" NavigateUrl=' 77 <%#"UserCompany.aspx?MemberName="+DataBinder.Eval(Container.DataItem,"MemberName").ToString()+"&Operation="+DataBinder.Eval(Container.DataItem,"Operation").ToString()%>'> 78 <%#DataBinder.Eval(Container.DataItem,"RealName").ToString()%> 79 </asp:HyperLink> 80 </ItemTemplate> 81 </asp:TemplateColumn> 82 <asp:TemplateColumn HeaderText="添加时间"> 83 <ItemTemplate> 84 <asp:Label ID="Label7" runat="server"> 85 <%#DataBinder.Eval(Container.DataItem,"addtime").ToString()%> 86 </asp:Label> 87 </ItemTemplate> 88 </asp:TemplateColumn> 89 <asp:TemplateColumn HeaderText="操作"> 90 <ItemTemplate> 91 <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%#"MyCompanyEdit.aspx?CompanyID="+DataBinder.Eval(Container.DataItem,"CompanyID").ToString()%>'> 92 <img src="images/icon_edit.gif" border="0" alt="编辑客户"></asp:HyperLink> 93 <asp:HyperLink ID="HyperLink2" runat="server" onclick="return confirm('您确定要删除吗?')" NavigateUrl='<%#"MyCompanyDel.aspx?CompanyID="+DataBinder.Eval(Container.DataItem,"CompanyID").ToString()%>'> 94 <img src="images/icon_delete.gif" border="0" alt="删除客户"></asp:HyperLink> 95 </ItemTemplate> 96 </asp:TemplateColumn> 97 </Columns> 98 <PagerStyle HorizontalAlign="Center" ForeColor="#330099" BackColor="#FFFFCC" Mode="NumericPages"></PagerStyle> 99 </asp:datagrid></td> 100 </tr> 101 </table> 102 <TABLE cellSpacing="0" cellPadding="0" width="90%" align="center" border="0"> 103 <TR> 104 <TD height="30">&nbsp;</TD> 105 </TR> 106 </TABLE> 107 </form> 108 </body> 109</HTML> 110
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:科信客户关系管理系统源码

- 明日多用户Blog系统源码

- 站长中国绩效考核系统源码

- 明日Asp.net在线论坛源码

- ActiveRecord简单实例代码

- hww企业网站实用源码 V2.0

- 明日网上商城购物系统源码

- 北京某驾校全站源码

- 太糊留言板(VS2008+SQL2005)

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