9eFish - 带有 MVC 标签的文章
1
臭虫

ASP.NET MVC Performance II: Optimizing resources

gpeipmangpeipman 发表于 33 天, 4 小时, 56 分钟 之前
Tuesday, February 16, 2010 3:11:40 PM GMT Sunday, February 07, 2010 9:40:29 AM GMT
In my previous posting about ASP.NET MVC performance I showed you how to combine resources like scripts, style sheets and images. In this posting I will show you how to minimize resources so we don’t waste the bandwidth we got. (more)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, MVC, optimization, performance
1
臭虫

ASP.NET MVC Performance I: Combining resources

gpeipmangpeipman 发表于 34 天, 28 分钟 之前
Sunday, February 14, 2010 1:16:24 PM GMT Saturday, February 06, 2010 2:08:19 PM GMT
I wrote a small postings series about how to optimize ASP.NET MVC applications. This posting is small introduction to series and it also introduces first two optimization steps: resources and images combining. (more)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, MVC, optimization, performance
1
臭虫

Using FullCalendar jQuery component with ASP.NET MVC

gpeipmangpeipman 发表于 36 天, 21 小时, 1 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Wednesday, February 03, 2010 5:35:30 PM GMT
I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. (more)
类别: Web Form | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: asp.net, fullcalendar, JQuery, MVC
1
臭虫

ASP.NET MVC: Creating reports using Chart control

gpeipmangpeipman 发表于 111 天, 46 分钟 之前
Saturday, November 28, 2009 5:45:52 AM GMT Saturday, November 21, 2009 1:50:27 PM GMT
ASP.NET Chart control is powerful control you can use to add charting support to your web applications. Although chart controls are mainly used with ASP.NET forms it is not very hard to use them also in ASP.NET MVC applications. In this posting I will show you how to use ASP.NET Chart control in ASP.NET MVC application and I will illustrate how to do it easily so you don’t mess up your views. (more)
类别: Architecture | 点击: 8 | 评论 | | 源: weblogs.asp.net
标签: asp.net, chart, MVC, reporting
1
臭虫

ASP.NET MVC: Validating objects using Enterprise Library validation application block

gpeipmangpeipman 发表于 119 天, 56 分钟 之前
Friday, November 20, 2009 3:35:35 AM GMT Friday, November 13, 2009 1:40:25 PM GMT
Data validation is important topic in applications. There are many validation frameworks available and there should be one that you are happy with. I am currently playing with Enterprise Library 4.1 Validation Application Block and I am integrating it to my ASP.NET MVC application. In this posting I will show you how to use validation block in your ASP.NET MVC application. (more)
类别: Web Form | 点击: 2 | 评论 | | 源: weblogs.asp.net
标签: asp.net, Enterprise Library, MVC, Validation
1
臭虫

A List Apart: Articles: JavaScript MVC

dotlivedotlive 发表于 203 天, 13 小时, 20 分钟 之前
Wednesday, August 26, 2009 1:46:13 AM GMT Friday, August 21, 2009 1:16:34 AM GMT
August 18, 2009JavaScript MVC by Jonathan Snook Published in: Scripting| Discuss this article » Once a bit player, JavaScript increasingly takes center stage. Its footprint—the space it takes up on our servers and in our development schedules—continues to grow. So how can we make our JavaScript more reusable and easier to maintain? Perhaps MVC will offer some clues. While MVC is a familiar term to those in back-end application development—using frameworks such as Struts, Ruby... (more)
类别: UX | 点击: 1 | 评论 | | 源: www.alistapart.com
标签: Javascript, MVC
1
臭虫

MVC实用集锦(2) - Coolin - 博客园

adminadmin 发表于 215 天, 1 小时, 13 分钟 之前
Wednesday, August 12, 2009 1:55:02 AM GMT Sunday, August 09, 2009 1:23:21 PM GMT
MVC实用集锦(2)继续和大家分享一些MVC使用技巧与实例。 首先想再补充一下集锦(1)中的扩展htmlhelper问题,其实在C#3.0,就已经提供了扩展方法这个新特性,我们可以在程序中扩展一些基本类型,也可以扩展一些自定义类型。例如:String,Datetime ,Enumerable等,具体步骤与扩展htmlhelper没什么区别(还是提醒一下别忘记引用命名空间)。 继续(1)中的顺序往下进行吧. 5.在view与Mvc view user control中使用强类型。 <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master"     Inherits="System.Web.Mvc.ViewPage" %> <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> 在view 或 Mvc view user control中的代码如下 <% if ... (more)
类别: Web Form | 点击: 2 | 评论 | | 源: www.cnblogs.com
标签: MVC
1
臭虫

ASP.NET MVC 2 Preview 1 is released! - Gunnar Peipman's ASP.NET blog

gpeipmangpeipman 发表于 224 天, 5 小时, 28 分钟 之前
Tuesday, August 04, 2009 1:57:34 AM GMT Friday, July 31, 2009 9:08:22 AM GMT
ASP.NET MVC 2 first preview is released to public now and you can download it from Microsoft download site. Here is short overview of technical requirements and main new features of ASP.NET MVC 2 Preview 1. (more)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, MVC
1
臭虫

ASP.NET MVC Calendar component - Gunnar Peipman's ASP.NET blog

gpeipmangpeipman 发表于 228 天, 7 小时, 33 分钟 之前
Tuesday, July 28, 2009 2:42:05 AM GMT Monday, July 27, 2009 7:03:47 AM GMT
I am writing simple ASP.NET MVC system that I plan to publish with source code pretty soon. I needed some simple calendar component that doesn’t require ASP.NET server-side form to work. I found different JavaScript based calendars and only one pretty old calendar that was specially written for ASP.NET MVC. I updated it and here is the source and binary downloads for Visual Studio 2008 and ASP.NET MVC 1.0. (more)
类别: Foundation | 点击: 8 | 评论 | | 源: weblogs.asp.net
标签: asp.net, calendar, MVC
1
臭虫

OpenForum – new ASP.NET MVC based forum - Gunnar Peipman's ASP.NET blog

gpeipmangpeipman 发表于 229 天, 4 小时, 29 分钟 之前
Sunday, July 26, 2009 3:31:46 PM GMT Sunday, July 26, 2009 10:07:49 AM GMT
There is new project in CodePlex called OpenForum. With source code you get also some samples you can run on your machine. OpenForum is pretty new and simple. There are no advanced forum features and currently it is suitable for smaller forums. You can change the look of OpenForum and write your own user repositories. Let’s see how OpenForum looks like. (more)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, Forum, MVC
1
臭虫

CodeProject: WebForms 和MVC 的融合—差一点点….

dotlivedotlive 发表于 246 天, 11 小时, 45 分钟 之前
Friday, July 10, 2009 3:36:31 AM GMT Thursday, July 09, 2009 2:52:05 AM GMT
I’ve complained before about the disconnect between WebControls and actual inline code. WebControls are still a very convenient way to write templates but because they exist in a different context than inline code they are effectively off limits. As cool as MVC is you’re pretty much stuck throwing all your existing WebControls out the window. Or are you? (more)
类别: Web Form | 点击: 1 | 评论 | | 源: www.codeproject.com
标签: MVC, webform
1
臭虫

Nikhil Kothari's Weblog : ViewModel with MVC/Navigation in Silverlight

xgluxvxgluxv 发表于 277 天, 12 小时, 57 分钟 之前
Monday, June 08, 2009 1:40:19 PM GMT Monday, June 08, 2009 1:40:15 AM GMT
ViewModel with MVC/Navigation in Silverlight This post continues the discussion and investigation into the ViewModel (aka MVVM)pattern. This time around, the sample, a New York Times Newswire API-based News Widget application demonstrates how the MVC pattern caters to implementing navigation logic, while the ViewModel pattern focuses on interaction logic. I've been writing about ViewModel (aka MVVM) pattern (here, here, here and more) and implement... (more)
类别: Web Form | 点击: 1 | 评论 | | 源: www.nikhilk.net
标签: MVC, MVVM, Silverlight
1
臭虫

InfoQ: 采访:Chad Myers和FubuMVC - ASP.NET上的另一个MVC实现

adminadmin 发表于 324 天, 8 小时, 54 分钟 之前
Tuesday, April 28, 2009 1:52:34 AM GMT Wednesday, April 22, 2009 5:42:47 AM GMT
ASP.NET MVC 正式版发布前,Jeremy D.Miller 和Chad Myers 就在ASP.NET MVC的早期版本上进行了一些工作,并对底层实现做了一些修改。后来他们改掉了几乎所有的ASP.NET MVC实现,于是决定构造另一个MVC实现FubuMVC ,不久后Mark Nijhof 被邀请加入项目并成为主要成员。 (more)
类别: Web Form | 点击: 2 | 评论 | | 源: www.infoq.com
标签: asp.net, FubuMVC, MVC
1
臭虫

在 Azure 中部署支持 MVC 的 Asp.Net 应用程序

carolhaozicarolhaozi 发表于 325 天, 12 小时, 16 分钟 之前
Tuesday, April 21, 2009 12:01:28 PM GMT Tuesday, April 21, 2009 2:21:08 AM GMT
之前我就像某人说的那样,I’m not quite a cloud guy,但是后来看了各式各样的演示,认识了 Cloud Project 的构成,以及 Mix 09 里面某人说 "It’s fun!” 以后,就冲着这句 It’s fun,我就扔了个 Hello World 上去,感觉还不错的,但是缺乏做点什么的动力,后来就丢在一边了。差不多的时间知道了 Google App Engine, 但不知GAE 猴年马月才能用 .Net 技术的,我不会python/java,而且现在貌似 GAE 没有跟 WorkerRole 相应的东西,但是好歹也用上了GAppProxy,也叫在 Google 的云上爽了一把。 (more)
类别: Cloud | 点击: 0 | 评论 | | 源: www.cnblogs.com
标签: Azure, MVC
2
臭虫

快速搞懂 ASP.NET MVC

xgluxvxgluxv 发表于 327 天, 3 小时, 6 分钟 之前
Monday, April 20, 2009 3:37:14 AM GMT Sunday, April 19, 2009 11:30:43 AM GMT
帖只提供 MVC Pattern 的观念和架构介绍,仅供未接触过 MVC Framework 的 .NET 技术人员作为参考之用,以评估是否要深入学习或在将来的项目导入。 (more)
类别: Web Form | 点击: 4 | 评论 | | 源: www.cnblogs.com
标签: asp.net mvc, MVC