摘要: As you know, database is always important for a website. So let’s go to see where the database informations in umbraco website.1. Find your website folder.2. Find the “web.config” file, and the path is: <installed root>/web.config.3. Open the web.config file.4. Find the node “appSettings”. Und 阅读全文
posted @ 2012-02-07 09:40 王德林 阅读(193) 评论(0) 推荐(0)
摘要: To the Audience: The artical is aimed to help the none-technical people manage the website built on Umbraco. Install a Umbraco Site Product 1. Now, I have a Umbraco website and let’s browse it. 2. T... 阅读全文
posted @ 2012-02-03 15:10 王德林 阅读(336) 评论(0) 推荐(0)
摘要: We have skimed the Umbraco website before. Now, you can’t wait to know that how to create website page. Don’t worry, we do this immediately.1. We launch the website “empty umbraco” that we have created to create website page:2. Why this page appear? Because this website is a empty umbraco website an 阅读全文
posted @ 2012-02-02 22:59 王德林 阅读(285) 评论(0) 推荐(1)
摘要: Now that we have created the umbraco website, let’s skim it before really studying it.1. Run the Microsoft webmatrix, and choose the website that we have created (Quick start umbraco):2. Launch the website:3. Add ”/umbraco/” to the address to login the back office:4. Fill username and password, then 阅读全文
posted @ 2012-02-02 21:39 王德林 阅读(200) 评论(0) 推荐(0)
摘要: To learn umbraco cms, we have to get one umbraco website firstly. Now, let’s do it.A. Create website by starter kits1. start-up the Microsoft WebMatrix:2. choose Create website from Web library:3. choose “Umbraco CMS” website to create:4. Fill your Umbraco website name:5. When you Created your websi 阅读全文
posted @ 2012-02-01 18:27 王德林 阅读(255) 评论(0) 推荐(0)
摘要: 一、简单package的创建:1.打开Umbraco的管理开发后台:2.创建一个页面作为package创建的文件:3.浏览该页面:4.Umbraco切换到Developer开发区:5.在Packages下创建一个名为MyTest的Package:6.填写必要的信息:7.切换到Package Contents:8.点击Choose,选择我们创建的PackageTest文件:8.点击保存并发布(package创建还有更多的操作内容,有待深入),点击查看创建的package MyTest:9.到这里简单的package就算是创建完成。现在我们去删除packageTest页面:10.我们可以到自己的U 阅读全文
posted @ 2012-01-04 14:25 王德林 阅读(543) 评论(1) 推荐(0)
摘要: 1.登录进入自己的Umbraco网站管理后台,把工作区切换到developer;2.可以看到原来已自带的package,点击Umbraco package Repository:3.这里可以看到有一系列推荐的package,我选择了其中一个多文件上传:4.点击Install package:5.点击确定:6.接受许可,点击安装:7.等待安装完成:8.点击Install:9.看到其中有类似用户自定义控件的文件;还有一个说明文档,现在刷新工作区:10.你会看到已经安装好了这个package,再到Data Type里面看看:11.多了一个安装的控件,现在去创建一个Marco:12.创建了一个Mult 阅读全文
posted @ 2011-12-30 10:19 王德林 阅读(575) 评论(1) 推荐(0)
摘要: asp.net服务器端跳转页面的三种方法1、Response.Redirect这个跳转页面的方法跳转速度不快,因为它要走2次回发(postback)。它可以跳转到任何页面,没有站点页面限制(可以由baidu跳转到google),但不能跳过登录保护。速度慢是其最大缺陷!Redirect跳转机制:首先是服务器端发送一个http请求到客户端,通知需要跳转到新页面,然后客户端再发送跳转请求到服务器端。需要注意的是跳转后内部空间保存的所有数据信息将会丢失,所以需要用到session。2、Server.Transfer速度快,只需要一次postback,但它必须是在同一个站点内跳转。Server.Tran 阅读全文
posted @ 2011-12-29 13:21 王德林 阅读(1018) 评论(1) 推荐(1)
摘要: 我的微博交流地址:Thinking of learning小组微博学习交流地址:Umbraco学习直播QQ微博网页结构框架微博学习:960gs学习 阅读全文
posted @ 2011-12-21 11:30 王德林 阅读(165) 评论(0) 推荐(0)
摘要: 英文详细资料:ASP.NET integration provides dependency injection for web forms pages.基本步骤为(摘抄自网络):Autofac是应用于.Net平台的依赖注入(DI,Dependency Injection)容器,具有贴近、契合C#语言的特点。随着应用系统的日益庞大与复杂,使用Autofac容器来管理组件之间的关系可以“扁平化”错综复杂的类依赖,具有很好的适应性和便捷度。 在该篇博文中,我们将应用Autofac,以依赖注入的方式建立传统ASP.NET页面与服务/中间层之间的联系,建立“呈现”与“控制”的纽带。 那么,如何... 阅读全文
posted @ 2011-12-16 16:35 王德林 阅读(568) 评论(1) 推荐(0)