-
项目如何开始:怎样和客户谈需求
香水坏坏 发表于2009-6-18 [软件架构]项目刚刚开始的时期,项目经理做的主要事情是搜集客户需求,这是一个项目经理非常头疼的阶段,合作的磨合刚刚开始,需求问题上的失误又会导致无穷的后患。
(More...) -
.net 读取项目AssemblyInfo.cs属性值
香水坏坏 发表于2009-6-12 [ASP.NET]We write all those code repetitively for dynamic assembly loading and checking to verify few properties on assemblies. It would be a great stop to write all such things in the assemblyinfo.cs (because it needs to completely describe the assembly that it is intended to serve for) You can define your About form of the application entirely using the AssemblyInfo.cs
(More...) -
FCK Editor 表单提交时运行的代码
香水坏坏 发表于2009-6-10 [Javascript]for( var name in FCKeditorAPI.Instances){
var oEditor=FCKeditorAPI.Instances[name];
if( oEditor.GetParentForm && oEditor.GetParentForm()==this )
oEditor.UpdateLinkedField();
} -
asp.net服务器安全之磁盘访问权限设置
香水坏坏 发表于2009-5-26 [ASP.NET]asp.net服务器安全之磁盘访问权限设置 (More...) -
如何正确的在XHTML插入FLASH
香水坏坏 发表于2009-5-18 [CSS/UI]原文:
http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml
XML/HTML代码- <!--[if !IE]> -->
- <object type="application/x-shockwave-flash"
- data="movie.swf" width="300" height="135">
- <!-- <![endif]-->
- <!--[if IE]>
- <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
- codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
- width="300" height="135">
- <param name="movie" value="movie.swf" />
- <!--><!--dgx-->
- <param name="loop" value="true" />
- <param name="menu" value="false" />
- <p>This is <b>alternative</b> content.</p>
- </object>
- <!-- <![endif]-->
-
Intel Hex Opcodes And Mnemonics
香水坏坏 发表于2009-5-14 [specification]Intel 8086 Family Architecture
(More...) -
[转载]互联网创业
香水坏坏 发表于2009-5-5 [Others]鞋厂理论:世界上有无数家鞋厂,制造着各自的鞋子,销售给各自的客户。
在网络上,当某个生意已经有人在做的时候,就想想皮鞋理论,你会发现:在大多数情况下,即使有很多人在做鞋子,也并不意味着你就不能再去做鞋子了,别人做了耐克,你可以做李宁,不行就做安踏啥的,即使不知名的杂牌也在三线城市卖的不错。
如果其他的鞋厂都在赚钱,那么你也有机会在这个市场里分一杯羹;如果其他鞋厂都在亏钱,那么你要想办法把他们亏掉的钱赚到自己手上。把成本、产品、服务、渠道、营销都做好,你就有机会超过现有的竞争对手。赚钱的生意,往往都是已经有很多人都在做的生意。如果某种生意只有你一个人在做,也许说明你的生意没法赚钱,所以没人看得上。
(More...) -
javascript强制弹出新窗口 防拦截
香水坏坏 发表于2009-4-30 [Javascript]朋友问到,就顺便写了这段脚本...
JavaScript代码- <script type="text/javascript">
- function openNewWin(url){
- var dom = document.createElement('a');
- dom.setAttribute('href',url);
- dom.setAttribute('target','_blank');
- document.body.appendChild(dom);
- dom.click();
- document.body.removeChild(dom);
- }
- </script>
- <input type="button" onclick="openNewWin('http://www.aspstat.com/');"/>
-
Web开发工具索引
香水坏坏 发表于2009-4-7 [Others] -
发布我的一个开源项目 AspStat.IO.GifImage
香水坏坏 发表于2009-3-3 [ASP.NET]实现生成GIF动画缩略图

