医药CRM系统开发

自已做医药CRM系统有四年了,终于可以算个产品了,努力市场化,今年重种将医药营销的理念加入CRM

导航

随笔分类 -  ASP.NET1.1技术积累

有关asp.net1.1的技术技巧的积累
摘要:客户端:服务端 private void Page_Load(object sender, System.EventArgs e) { // 在此处放置用户代码以初始化页面 string Logined=Convert.ToString(SqlHelper.ExecuteScalar(ConfigurationSettings.AppSettings["connString"],"Ge... 阅读全文

posted @ 2007-03-25 19:56 hhq80 阅读(164) 评论(0) 推荐(0)

摘要:http://www.microsoft.com/china/MSDN/library/WebServices/WebServices/WebServices.mspx?mfr=true您曾经在多台计算机上工作过吗?您希望能够将剪贴板内容从一台计算机复制到其他计算机吗?我一直都很希望能够有一种快速而简便的方法,通过简单的复制和粘贴将文本代码段、屏幕快照、甚至文件移动到其他计算机上。如果您对这个话题... 阅读全文

posted @ 2007-03-19 12:17 hhq80 阅读(214) 评论(0) 推荐(0)

摘要:C:\Inetpub\wwwroot\jxc\BLL>csc.exe /target:library /reference:kcCollection.dll;SQLHelper.dll kcItem.cs C:\Inetpub\wwwroot\jxc\BLL>csc /target:library SQLHelper.csC:\WINDOWS\Microsoft.NET\Framework\v1... 阅读全文

posted @ 2007-03-16 16:07 hhq80 阅读(189) 评论(0) 推荐(0)

摘要:使用 Web Services Enhancements 2.0 进行编程 Matt PowellMSDN Web Services 2003年7月 适用于: Web Services Enhancements 2.0 for Microsoft® .NET Microsoft® .NET Framework 1.0 或更高版本 Microsoft® Windows Server 20... 阅读全文

posted @ 2007-03-16 15:02 hhq80 阅读(288) 评论(0) 推荐(0)

摘要:Vs2005里面的,查询12000条记录,设置RemotingFormat = SerializationFormat.Binary;再序列化,通过WebService传输,客户端接收,再反序列化,确实效果大大的优于直接传送DataSet,不仅网络传输中如此,即使本机,性能改善也非常明显. 下面分别是WebService里面的方法和客户端反序列化取DataSet的方法.1. 服务器上面取数据,填充... 阅读全文

posted @ 2007-03-15 13:59 hhq80 阅读(2307) 评论(2) 推荐(0)

摘要:一般情况下,我们喜欢使用Session储存我们的变量。Asp.Net提供了下面一些方法储存Session的值: InProc State Server SQL Server “InProc”表示我们使用传统ASP一样的方法储存Session的值,而且“State Server”则表示使用另外一台主机来储存Session的值。当然我们也能使用SQL Server储存值,我们这篇文章就专门用于讲解这... 阅读全文

posted @ 2007-03-14 14:49 hhq80 阅读(819) 评论(1) 推荐(0)

摘要:http://www.microsoft.com/taiwan/msdn/columns/adonet/AdoNet_20041231.htmADO.NET 1.x Dataset 序列化問題探討 http://support.microsoft.com/?kbid=829740提高 DataSet 序列化和远程处理性能 利用SharpZipLib进行压缩和解压缩 [原] 因为工作需要所以要用C#... 阅读全文

posted @ 2007-03-13 09:23 hhq80 阅读(783) 评论(0) 推荐(0)

摘要:1。打开窗口: Code:var handle = window.showModalDialog(url, objects, feathers); 其中:objects可以为参数(包括数组),也可以是对象。通常的用法 objects = {window} ,把父窗体的对象共享给子窗体。 2。关闭子窗口: Code:window.close(); 3。从子窗体传参数给父窗体: Code:window... 阅读全文

posted @ 2007-03-04 19:50 hhq80 阅读(183) 评论(0) 推荐(0)

摘要:We all use JS functionality handlers that will trigger for different attached DataGrid events. More frequent JS handlers are:Mouse Over, Mouse Out, On Click, On Double Click, Validate (for different g... 阅读全文

posted @ 2007-03-03 13:30 hhq80 阅读(287) 评论(0) 推荐(0)

摘要:Double click could be simulated by actaully investigating on how SELECT command works on DataGrid.The select command creates a tag which runs the __doPostBack Java function at the client side script.... 阅读全文

posted @ 2007-03-03 13:29 hhq80 阅读(238) 评论(0) 推荐(0)

摘要:输入框为服务器端运行 Label Label 代码 private void Button3_Click(object sender, System.EventArgs e) { Label1.Text = "选择的行号:" + Request.Form["rad"].ToString(); rd.Value = Request.For... 阅读全文

posted @ 2007-03-03 10:07 hhq80 阅读(451) 评论(0) 推荐(0)

摘要:' Width="95%" /> 阅读全文

posted @ 2007-03-03 10:04 hhq80 阅读(224) 评论(0) 推荐(0)

摘要:最简格式:这是一个偷巧的方法,但不通用。前提是这个页面只有一个datagrid,且只有datagrid中有checkbox;这个就比较方便。主要思路就是搜索出整个页面的checkbox,将它们全部选中或反选。 // 全选 function allCheck() { for (var i=0;i<Form1.elements.length;i++) { var e=Form1.elements[... 阅读全文

posted @ 2007-03-03 10:00 hhq80 阅读(196) 评论(0) 推荐(0)

摘要:In Part 1 we looked at how to add a data-dependent DropDownList to the footer of a DataGrid. In this part we'll see how to add two DropDownLists, with the second DropDownList dependent upon the first.... 阅读全文

posted @ 2007-03-02 21:21 hhq80 阅读(262) 评论(0) 推荐(0)

摘要:IntroductionIn a previous article by John Sanborn titled Adding a New Record to the DataGrid, John examined how to use the DataGrid footer as a means for inserting a new record into the DataGrid. For ... 阅读全文

posted @ 2007-03-02 21:19 hhq80 阅读(228) 评论(0) 推荐(0)

摘要:' SelectedIndex='' /> ' /> ' Columns="80" /> 阅读全文

posted @ 2007-03-02 21:17 hhq80 阅读(225) 评论(0) 推荐(0)

摘要:Private Sub DataGrid1_ItemCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemCreated If (e.Item.ItemType = Lis... 阅读全文

posted @ 2007-03-02 21:12 hhq80 阅读(161) 评论(0) 推荐(0)

摘要:if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { //添加自定义属性,当鼠标移过来时设置该行的背景色为"6699ff",并保存原背景色 e.Item.Attributes.Add("onmouseover","currentcolor=t... 阅读全文

posted @ 2007-03-02 17:33 hhq80 阅读(196) 评论(0) 推荐(0)

摘要:if ( e.Item.ItemType == ListItemType.EditItem ) { DataRowView drv = (DataRowView)e.Item.DataItem; SqlCommand com = new SqlCommand("select dm,dmmc from zy_yp1_group order by dmmc"); com.... 阅读全文

posted @ 2007-02-28 20:45 hhq80 阅读(171) 评论(0) 推荐(0)

摘要:名称 日期 系列 主题 讲师 软件架构设计系列课程(3):如何成为一个.NET企业架构师 2/24/2006 软件架构设计系列课程 ... 阅读全文

posted @ 2007-02-28 13:52 hhq80 阅读(1608) 评论(0) 推荐(1)