定制其实也减少不了多少体积,不过的确方便了不少。结合jQuery开发,缺少不了。
地址:
http://extjs.com/download/buildBuild your own Ext 2.0
Not everyone can include the full ext-all.js file on their site. This tool will allow you to build your own ext.js with just the things you need. Looking for the 1.1 version of this page?
Dependencies will automatically be included in the correct order even if they are not selected - with one exception. If you choose a feature that adds functionality to a core component then you will need to choose to include the core component. For example, if you select "Grid - Editing Support" you will also need to select "Grid - Core". Please report any build issues in this forum thread.
全文完
已放弃原代码生成器,改用Smart Code生成.
已使用SC完成原生成器的 存储(SP),实体类(Model,DAL,BLL)生成(引入泛型,不再生成具体集合类,未使用用工厂,还是习惯简单的静态BLL)
接下来:
- 使类支持缓存(Cache) 完成
- Web服务(WebService)
- 序列化互转(Serializable) 辅助完成
- UI的本地化(Localizable:resouces && ascx)
- 基础的后台列表,编辑,删除(Admin:resouces && ascx&& cs)
- 展示列表(Front:resouces && ascx && cs)
- +将对DAL增加委托
全文完
1。没有永久的升级ID
2。如果取得的最新ID不能升级,请选择国内的升级服务器: NOF32中国官方服务器
http://u1.nod32cn.com3。安装之前看清是否是试用版本。
以上是心得,切记。
全文完
Today we’re proud to announce the immediate availability of Community Server 2007 – the best version of Community Server yet!
There are a number of new improvements, but by far the largest is the new theme system “Chameleon”. Chameleon allows people to change the look-and-feel of Community Server without requiring a degree in Computer Science! There are simple to use what-you-see-is-what-you-get tools to assist you in changing colors, graphics, fonts, and more. Also sharing themes has never been easier – Community Server uses a single-file for exporting or importing all of its theme settings, which means you can quickly share your themes with your friends.
阅读全文...
要用accessprovider的话麻烦会更多一点,首先要做的就是去msdn上下载ms放出的
Sample Access Providers, 当然也可以顺便看看说明页面http://msdn2.microsoft.com/en-us/asp.net/aa336558.aspx,下载回来 之后安装那个vsi,然后新建一个project类型选这个新的access provider,编译得到dll,然后在你的新网站里的bin目录里丢这个dll,在app_data里丢aspnetdb.mdb,当然最后关键的是 要修改web.config,具体修改方式可以参考前面那个模版project里的config。好了做好以上事情之后就可以打开asp.net配置-- 安全选项卡,就可以看到一系列的设置了
摘自:http://bennyni.yculblog.com/post.1569574.html
全文完
jQuery Nightly不知道算哪个版本,作者是在情人节的前一天放出来的。
阅读全文...
一直没有怎么看JQuery更新后的
Documentation,原来为兼用Prototype,他们给出了好几个解决方法。
阅读全文...
1.30号发布的,我又晚了一步。不过此版本的更新实在没什么变化。
阅读全文...
在以前的
使用Prototype在线图片区域选择我提到过这个应用,这次上传的实例比较多,因为作者又更新了库,并产生的更多的扩展。
查看演示 全文完
昨天有朋友问我“为什么在本地测试正常,而在服务器上创建目录就出错了”。其实这一情况我也遇到过,是权限的问题。虚拟主机一般对ASP.NET权限限制得很夸张,当然如果我们自己的服务器,也应该设置地如此夸张,不然可能给服务器导制不可估计的损失。
当时我遇到这个问题的时候也傻了一下,不过运气比较好,那时候已经用上FCKeditor了,发现居然FCKeditor上传文件,建立目录不会出错!打开项目一看,FCKeditor居然是调用系统API来解决没有权限创建目录的问题。
该方法引用
System.Runtime.InteropServices ;
使用以下方法代替Dir....Create
[DllImport("msvcrt.dll", SetLastError=true)]
public static extern int _mkdir(string path) ;
当然它也只能创建本级目录,如果要创建N级目录还要改写,具体实现大家可以自己发挥,也可参与FCK的Util.cs文件
全文完
jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript.
Download jQuery (uncompressed) 55kb Great for testing, learning and development
Download jQuery (compressed) 19kb Great for production use
阅读全文...
用这个利用AJAX重入代替原来的Title提示,显示的内容更加随意,呵呵,但如果提示内容带有链接,则需要自己可以下jtip里的事件,因为默认是鼠标在链接上则提示,而移开则不提示,所以不可能点上链接,在线演示(原版)
全文完
使用 ASP.NET 配置文件来配置用于管理用户配置文件值的参数。
阅读全文...
1. Bin文件夹
Bin文件夹包含应用程序所需的,用于控件、组件或者需要引用的任何其他代码的可部署程序集。该目录中存在的任何.dll文 件将自动地链接到应用程序。如果在该文件夹中留有不用的或过期的文件,则可能出现“二义性引用(ambiguous reference)”异常的风险。换句话说,如果两个不同的程序集定义相同的类(相同的命名空间和名称),则ASP.NET运行库不能决定应该使用哪一 个程序集,从而抛出一个异常。在开发时,当我们重新命名一个项目或一个程序集的名称时,这是常见的错误。为了避免这种错误,一定不要在该文件夹中保留任何 不必要的程序集,或者至少要从配置文件的<assemblies>节中删除如下代码行:
阅读全文...