随笔分类 -  Asp.net

Tracking User Activity
摘要:I like data. I go gaga over measurable metrics. Nothing makes me happier than storing information and then seeing it expressed in tables of numbers and colorful charts. Whenever I work on a web application I am always looking for interesting data to record and analyze, and the most interesting (and potentially profitable) data that every website owner should track are usage statistics. Web server log files and online tools like Google Analytics provide an array of useful metrics, including how m 阅读全文
posted @ 2009-01-07 21:26 杨发达 阅读(530) 评论(0) 推荐(0) 编辑
export to csv + excel 打开乱码的问题
摘要:在有中文或者繁体的情况 , asp.net 直接render 出来的csv 可能有乱码的问题。 可能你会修改config 来修正这个问题。 我提供另外的放法: 将datatable 出来组织成',分割的数据, 直接用ascii.utf8 编码存成csv 文件, 然后render 这个文件。 保证这个方法出来的文件没有这个问题。 阅读全文
posted @ 2008-11-26 16:35 杨发达 阅读(1167) 评论(0) 推荐(0) 编辑
iis asp.net window 认证中的问题。
摘要:本以为很简单。 事情是这样的。 项目需要用户使用ad 登录web 系统, 查询数据库信息和产生report 。 这个数据库不是和website 同一台机器 , 因为是中央服务器, 必须使用ad 登录(大部分用户实际上是不能登录的)。我很快开发这个系统并且setup 。 website 的config 设定为<identity impersonate="true" /> <auth... 阅读全文
posted @ 2008-11-26 15:32 杨发达 阅读(444) 评论(0) 推荐(0) 编辑
sqlserver+job+ 超时
摘要:Error message when you execute a linked server query in SQL Server: "Timeout Expired"http://support.microsoft.com/kb/314530有一个任务需要取 link server 中的table , 执行过程出现了Execution terminated by the provider be... 阅读全文
posted @ 2008-11-26 15:21 杨发达 阅读(472) 评论(0) 推荐(0) 编辑
在XML文件中有些字符是被禁止使用的
摘要:在XML文件中有些字符是被禁止使用的。以下技巧会告诉你如何识别它们、它们何时出现以及如何采取相应的措施。by Jonathan Goodyear几天前我用过一个在ASP.NET中定义的标准的AdRotator 服务器控件。你也许对AdRotator还不太熟悉,它可以使你在Web网页中随意选取广告(banner)。AdRotator用一个XML文件作为数据源,其结构很简单: <Advertis... 阅读全文
posted @ 2008-11-24 18:01 杨发达 阅读(1043) 评论(0) 推荐(0) 编辑
在ASP.NET应用程序中使用身份模拟(Impersonation)
摘要:<%@ Page Language="C#"%><%@ Import Namespace = "System.Web" %><%@ Import Namespace = "System.Web.Security" %><%@ Import Namespace = "System.Security.Principal" %><%@ Import ... 阅读全文
posted @ 2008-11-24 18:00 杨发达 阅读(401) 评论(0) 推荐(0) 编辑
在ASP.NET应用程序中使用身份模拟+2.0 <1>
摘要:企业内部网站一般采用windwos身分验证机制。主要包括两部分一、程序代码中读取当前windows用户帐号二、IIS和ASP.NET的web.config设置一、这段代码可以取出当前windows用户的帐号, string strUser; System.Security.Principal.WindowsIdentity objIden = System.Security.Principal.W... 阅读全文
posted @ 2008-11-24 17:59 杨发达 阅读(665) 评论(0) 推荐(0) 编辑
Snap 链接预览的应用
摘要:链接预览的应用 :比如:search 结果的浏览。通常在很多的搜索结果情况下应用比如之前做过的dailynews项目中就有此样应用场景。Snap 所做的都是Image , 个人认为不好。 更希望做一个类似sina 的stock 预览的页面。 目标:Window 下预览的做法。 Web 页面的预览的做法。 阅读全文
posted @ 2007-03-20 14:27 杨发达 阅读(415) 评论(0) 推荐(0) 编辑
How to generate an RSS feed for your web site using ASP.NET
摘要:RSS stands for "Really Simple Syndication", is a standardized, XML-formatted means for syndication Web site content. Understandthat RSS is intended to provide information about a Web site's latestcont... 阅读全文
posted @ 2007-02-05 22:48 杨发达 阅读(591) 评论(0) 推荐(0) 编辑
Javascript: 设置textbox 为readonly .
摘要:今天系统需要使用javascript 动态设置textbox的readonly , 搞了半天一直没有搞定 最后发现 readonly 属性应该是 readOnly=true . javascript 的大小写烦死人 阅读全文
posted @ 2006-12-08 21:49 杨发达 阅读(3797) 评论(3) 推荐(0) 编辑
自动生成流水号, sql 方式, class 方式, ( 有待完成)
摘要:企业业务中经常有这样要求, 要求单据编号必须是什么格式, 比如我们现在的规则 前缀+年月+流水号 , 流水号按照年月重置. 我在做其他的项目时 也遇到很多特的需求( 财务凭证肯定是需要的) 比如 前缀+年月日+ 表中的其他字段+ 流水号(四位) , 流水号按照年月重置. 基本上,处理此问题的模式( 哈哈, 就是模式): 1: 定义编号的规则: 根据table 定以 和数据库字段的... 阅读全文
posted @ 2006-09-29 13:39 杨发达 阅读(1960) 评论(1) 推荐(0) 编辑
Msmq in Asp.net
摘要:一个flow 需要发mail 的功能, 公司已经有了一个发mail 的webserive . 此webservice 只能发送 email 正文, 不能发送附件, 具体实现的方案: Email -> save to database other windows service -> send mail . 由于database 可以存储mail 的发送状态, 我们可以 实现email 发送... 阅读全文
posted @ 2006-09-29 13:00 杨发达 阅读(278) 评论(0) 推荐(0) 编辑
how to upload a file to server/ how to modify a file in server
摘要:how to upload a file to server/ how to modify a file in server 阅读全文
posted @ 2006-09-28 00:49 杨发达 阅读(207) 评论(0) 推荐(0) 编辑
Sample:Building a Photo Tagging Site using ASP.NET 2.0, LINQ, and Atlas
摘要:Building a Photo Tagging Application using ASP.NET 2.0, LINQ, and Atlas 阅读全文
posted @ 2006-09-24 00:04 杨发达 阅读(236) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示