iAwaaz-News-by-People - Stories tagged with ASP.NET MVC
1
Awaaz

Multi-tenant ASP.NET MVC - Views - Zack Owens

published 78 days, 17 hours, 8 minutes ago posted by attitudeattitude 80 days, 15 hours, 54 minutes ago
Sunday, June 20, 2010 2:46:27 AM GMT Friday, June 18, 2010 3:59:43 AM GMT
So far we have covered the basic premise of tenants and how they will be delegated. Now comes a big issue with multi-tenancy, the views. In some applications, you will not have to override views for each tenant. However, one of my requirements is to add extra views (and controller actions) along with overriding views from the core structure. This presents a bit of a problem in locating views for each... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, MVC
1
Awaaz

Scott Hanselman - Hanselminutes Podcast 217 - MVC Turbine and IoC made easy with Javier Lozano

posted by nancynancy 80 days, 16 hours, 25 minutes ago
Friday, June 18, 2010 3:28:52 AM GMT
My two-hundred-and-seventeenth podcast is up. Scott talks to Javier Lozano about his open source MVC Turbine project and how it makes Dependency Injection and inversion of control extremely easy. These concepts can be tricky to jump into and usually require custom code in your app. MVC Turbine makes it easy to get up and running in minutes with ASP.NET MVC and IoC... (more)
category: Technology | clicked: 0 | comment | | source: www.hanselman.com
tags: ASP.NET MVC, IOC, MVC
1
Awaaz

Localization with ASP.NET MVC ModelMetadata - Kazi Manzur Rashid

published 80 days, 16 hours, 39 minutes ago posted by nancynancy 82 days, 13 hours, 52 minutes ago
Friday, June 18, 2010 3:15:11 AM GMT Wednesday, June 16, 2010 6:02:14 AM GMT
When using the DisplayFor/EditorFor there has been built-in support in ASP.NET MVC to show localized validation messages, but no support to show the associate label in localized text, unless you are using the .NET 4.0 with Mvc Future. Lets a say you are creating a create form for Product where you have support both English and German like the following.... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, MVC, MVCExtensions, Open Source
1
Awaaz

Creating a custom View Engine for ASP.NET MVC leveraging Text Templates (T4)

published 84 days, 1 hour, 19 minutes ago posted by nancynancy 85 days, 23 hours, 14 minutes ago
Monday, June 14, 2010 6:34:58 PM GMT Saturday, June 12, 2010 8:40:28 PM GMT
This post is about creating a custom View Engine for ASP.NET MVC, leveraging the Text Template (T4) infrastructure already out there, and this is largely experimental :). This is in fact a spin off idea of some thing else I was doing :). [ ] Download Related Source Code For me, the most beautiful aspect of ASP.NET MVC is it?s extensibility ? they way you can ?stretch? the framework, to make it suitable for your own needs. I highly recommend you to read this article from Code Climber?s blog - 13 ASP.NET... (more)
category: Technology | clicked: 0 | comment | | source: amazedsaint.blogspot.com
tags: ASP.NET MVC, c#, MVC
1
Awaaz

HanselMinutes - Show #217 - MVC Turbine and IoC made easy with Javier Lozano

published 84 days, 1 hour, 19 minutes ago posted by nancynancy 85 days, 23 hours, 14 minutes ago
Monday, June 14, 2010 6:34:58 PM GMT Saturday, June 12, 2010 8:40:18 PM GMT
Scott talks to Javier Lozano about his open source MVC Turbine project and how it makes Dependency Injection and inversion of control extremely easy. These concepts can be tricky to jump into and usually require custom code in your app. MVC Turbine makes it easy to get up and running in minutes with ASP.NET MVC and IoC. (more)
category: Technology | clicked: 0 | comment | | source: www.hanselminutes.com
tags: ASP.NET MVC, HanselMinutes, IOC, MVC
1
Awaaz

Dependency Injection in ASP.NET MVC NerdDinner App using Unity 2.0 - Shiju Varghese's Blog

published 115 days, 13 hours, 50 minutes ago posted by nancynancy 121 days, 2 hours, 2 minutes ago
Friday, May 14, 2010 6:03:47 AM GMT Saturday, May 08, 2010 5:51:59 PM GMT
In my previous post Dependency Injection in ASP.NET MVC NerdDinner App using Ninject, we did dependency injection in NerdDinner application using Ninject. In this post, I demonstrate how to apply Dependency Injection in ASP.NET MVC NerdDinner App using Microsoft Unity Application Block (Unity) v 2.0. Unity 2.0 Unity 2.0 is available on Codeplex at http://unity.codeplex.com . In earlier versions of Unity, the ObjectBuilder generic dependency injection mechanism, was distributed as a separate assembl... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, ASP.NET MVC 2, IOC, NerdDinner, Unity
1
Awaaz

jQuery Templates and Data Linking (and Microsoft contributing to jQuery) - ScottGu's Blog

published 117 days, 16 hours, 18 minutes ago posted by nancynancy 121 days, 2 hours, 6 minutes ago
Wednesday, May 12, 2010 3:36:09 AM GMT Saturday, May 08, 2010 5:48:28 PM GMT
The jQuery library has a passionate community of developers, and it is now the most widely used JavaScript library on the web today. Two years ago I announced that Microsoft would begin offering product support for jQuery, and that we?d be including it in new versions of Visual Studio going forward. By default, when you create new ASP.NET Web Forms and ASP.NET MVC projects with VS 2010 you?ll find jQuery automatically added to your project. A few weeks ago during my second keynote at the MIX 2010 confe... (more)
category: Technology | clicked: 1 | comment | | source: weblogs.asp.net
tags: .net, Ajax, ASP.NET, ASP.NET MVC, Javascript, jQuery, Microsoft, ScottGu, Visual Studio, VS2010
2
Awaaz

Dependency Injection in ASP.NET MVC NerdDinner App using Ninject - Shiju Varghese's Blog

published 117 days, 7 hours, 3 minutes ago posted by nancynancy 126 days, 18 hours, 30 minutes ago
Wednesday, May 12, 2010 12:50:40 PM GMT Monday, May 03, 2010 1:24:23 AM GMT
In this post, I am applying Dependency Injection to the NerdDinner application using Ninject. The controllers of NerdDinner application have Dependency Injection enabled constructors. So we can apply Dependency Injection through constructor without change any existing code. A Dependency Injection framework injects the dependencies into a class when the dependencies are needed. Dependency Injection enables looser coupling between classes and their dependencies and provides better testability of an applica... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASP.NET MVC 2, IOC, Ninject, Ninject 2
2
Awaaz

April 30th Links: ASP.NET, ASP.NET MVC, Visual Studio 2010 - ScottGu's Blog

posted by nancynancy 126 days, 18 hours, 30 minutes ago
Monday, May 03, 2010 1:24:12 AM GMT
Here is the latest in my link-listing series. ASP.NET Data Web Control Enhancements in ASP.NET 4.0: Scott Mitchell has a good article that summarizes some of the nice improvements coming to the ASP.NET 4 data controls. Refreshing an ASP.NET AJAX UpdatePanel with JavaScript: Scott Mitchell has another nice article in his series on using ASP.NET AJAX that demonstrates how to prog... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: .net, ASP.NET, ASP.NET 4.0, ASP.NET AJAX, ASP.NET MVC, Javascript, Link Listing, ScottGu, Visual Studio
1
Awaaz

Sharp DOM - new view engine for ASP.NET MVC

published 122 days, 13 hours, 45 minutes ago posted by attitudeattitude 126 days, 18 hours, 31 minutes ago
Friday, May 07, 2010 6:09:08 AM GMT Monday, May 03, 2010 1:22:42 AM GMT
Sharp DOM is a view engine for ASP.NET MVC platform allowing developers to design extendable and maintenable dynamic HTML layouts using C# 4.0 language. It is also possible to use Sharp DOM project to generate HTML layouts outisde of MVC framework; for it, internal DSL is used. Sharp DOM project allows you to develop HTML layout as C# code using all the power of modern object-oriented C# 4.0 language. You can use features of C# 4.0 like inheritance, polymorphism, etc. In other words, designing of HTML l... (more)
category: Technology | clicked: 0 | comment | | source: sharpdom.codeplex.com
tags: ASP.NET MVC, HTML
1
Awaaz

First 3 ASP.NET MVC for the Rest of Us Videos - Joe Stagner

published 131 days, 15 hours, 56 minutes ago posted by attitudeattitude 132 days, 16 hours, 31 minutes ago
Wednesday, April 28, 2010 3:57:55 AM GMT Tuesday, April 27, 2010 3:23:05 AM GMT
Folks have been asking me for some time to do some ASP.NET MVC videos (more)
category: Technology | clicked: 0 | comment | | source: misfitgeek.com
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, Screencast, Screencasts
1
Awaaz

Releasing Shrinkr ? An ASP.NET MVC Url Shrinking Service - Kazi Manzur Rashid's Blog

published 126 days, 18 hours, 29 minutes ago posted by attitudeattitude 132 days, 16 hours, 31 minutes ago
Monday, May 03, 2010 1:25:29 AM GMT Tuesday, April 27, 2010 3:22:44 AM GMT
Few months back, I started blogging on developing a Url Shrinking Service in ASP.NET MVC, but could not complete it due to my engagement with my professional projects. Recently, I was able to manage some time for this project to complete the remaining features that we planned for the initial release. So I am announcing the official release... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, jQuery, MVC, Open Source, Shrinkr, Unity
2
Awaaz

NoSQL with MongoDB, NoRM and ASP.NET MVC - Shiju Varghese's Blog

published 137 days, 23 hours, 28 minutes ago posted by attitudeattitude 141 days, 1 hour ago
Wednesday, April 21, 2010 8:26:23 PM GMT Sunday, April 18, 2010 6:54:23 PM GMT
In this post, I will give an introduction to how to work on NoSQL and document database with MongoDB , NoRM and ASP.Net MVC 2. NoSQL and Document Database The NoSQL movement is getting big attention in this year and people are widely talking about document databases and NoSQL along with web application scalability. According to Wikipedia, (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, MongoDB, NoRM
1
Awaaz

Adding Stylesheets, Scripts In ASP.NET MVC2

posted by attitudeattitude 150 days, 21 hours, 41 minutes ago
Thursday, April 08, 2010 10:13:14 PM GMT
A while back I worked on some code that allowed you to add content to different areas of a MVC view, specifically for dealing with headers and scripts. The code worked well enough but relied on a lesser used member in the Reponse class ? the Filter property. Except, now in MVC2 you see this little message when you try to mess with the Filter? Filtering is not allowed? What? Why not?!? Admittedly, the original solution was rather hackish because it tried to perform all of the work in the Render phase... (more)
category: Technology | clicked: 0 | comment | | source: somewebguy.wordpress.com
tags: ASP.NET, ASP.NET MVC, c#, MVC, Page life Cycle
1
Awaaz

Setting up ASP.NET MVC with Fluent NHibernate and StructureMap | Kevin William Pang

posted by attitudeattitude 150 days, 21 hours, 41 minutes ago
Thursday, April 08, 2010 10:12:59 PM GMT
On a yet-to-be-released side project of mine, I decided to use Fluent NHibernate, StructureMap, and ASP.NET MVC. It took me awhile to get everything to play together nicely, so I documented the steps I took in case anyone out there was interested in using in a similar setup. (more)
category: Technology | clicked: 3 | comment | | source: www.kevinwilliampang.com
tags: ASP.NET MVC, Fluent NHibernate, NHibernate, StructureMap
2
Awaaz

Google Calendar Management with MVC

published 147 days, 15 hours, 52 minutes ago posted by attitudeattitude 150 days, 21 hours, 43 minutes ago
Monday, April 12, 2010 4:01:54 AM GMT Thursday, April 08, 2010 10:11:38 PM GMT
I recently read John Petersen?s blog entitled ?Adding Google Charts to your ASP MVC Applications? and I thought it was a pretty cool read. I thought I?d do a similar one taking advantage of the Google Data API SDK. In order to get started, you?ll need to do some setup by following the awesome instructions Google provides called Getting Started with the .NET Client Library to setup the SDK. Let?s get to the code! First things first, create a calendar repository interface like this: (more)
category: Technology | clicked: 1 | comment | | source: derans.blogspot.com
tags: ASP.NET MVC, google sdk, StructureMap
1
Awaaz

Upload/Import Download/Export any File to/from Oracle Database

published 168 days, 19 hours, 37 minutes ago posted by nancynancy 168 days, 21 hours, 1 minute ago
Monday, March 22, 2010 12:17:36 AM GMT Sunday, March 21, 2010 10:52:57 PM GMT
The general idea one have about databases is that they only serve the purpose of storing plain values as numbers, dates and text. A database does not do just that but even more allowing you to store a whole file as an Excel spreadsheet or an MP3 file in a column you define in your table. This post shows you how to Upload/Import Download/Export any File to/from Oracle Database through a simple ASP.NET MVC application UI. Have you ever heard about BLOB? This is what makes it possible to store a whole file ... (more)
category: Technology | clicked: 0 | comment | | source: www.leniel.net
tags: ASP.NET MVC, Blob, Database, download, export, file, Import, Oracle, sequence, Stored Procedure, upload
1
Awaaz

DeepFriedBytes - Episode 48: Web Development with ASP.NET MVC In Action Authors

published 170 days, 21 hours, 5 minutes ago posted by amit_it7amit_it7 170 days, 22 hours, 26 minutes ago
Friday, March 19, 2010 10:49:40 PM GMT Friday, March 19, 2010 9:28:35 PM GMT
In this episode Keith and Woody caught up with the team that wrote the book ASP.NET MVC In Action: Jeffrey Palermo, Ben Scheirman and Jimmy Bogard. The guys discussed the book, what drives their passion around ASP.NET MVC and what is in store for this huge change in ASP.NET development.... (more)
category: Technology | clicked: 0 | comment | | source: deepfriedbytes.com
tags: ASP .NET, ASP.NET MVC, Book, DeepFriedBytes, web development
1
Awaaz

Maintaining shared service in ASP.NET MVC Application - Kazi Manzur Rashid

posted by amit_it7amit_it7 171 days, 14 hours, 18 minutes ago
Friday, March 19, 2010 5:36:09 AM GMT
Depending on the application sometimes we have to maintain some shared service throughout our application. Let?s say you are developing a multi-blog supported blog engine where both the controller and view must know the currently visiting blog, it?s setting , user information and url generation service. In this post, I will show you how yo... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, Aspnetmvcextensibility, MVC
2
Awaaz

Installing ASP.NET MVC 2 RTM on Visual Studio 2010 RC - Shiju Varghese's Blog

published 172 days, 6 hours, 39 minutes ago posted by amit_it7amit_it7 174 days, 17 hours, 58 minutes ago
Thursday, March 18, 2010 1:14:43 PM GMT Tuesday, March 16, 2010 1:56:14 AM GMT
Visual Studio 2010 RC is built against the ASP.NET MVC 2 RC version but you can (more)
category: Technology | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASP.NET MVC 2, Visual Studio 2010
1
Awaaz

MSDN Blog Postings

published 176 days, 4 hours, 1 minute ago posted by amit_it7amit_it7 176 days, 19 hours, 34 minutes ago
Sunday, March 14, 2010 3:53:19 PM GMT Sunday, March 14, 2010 12:19:45 AM GMT
Anyone who wants to learn about ASP.NET MVC will quickly discover that MVC makes extensive use of a relatively new feature of .NET called attributes. Many programmers who are new to ASP.NET MVC may also be new to the use of attributes. This article covers the basic concepts of attributes and their use in ASP.NET MVC. What is an Attribute? An attribute is a class that inherits from the abstract class System.Attribute . By convention, all attributes are given a class name that ends with the word ?Attribute... (more)
category: Technology | clicked: 0 | comment | | source: msdnrss.thecoderblogs.com
tags: ASP.NET MVC
1
Awaaz

Herding Code 74: Javier Lozano on MVC Turbine and Composed Applications | Herding Code

published 176 days, 4 hours, 1 minute ago posted by amit_it7amit_it7 176 days, 19 hours, 34 minutes ago
Sunday, March 14, 2010 3:53:19 PM GMT Sunday, March 14, 2010 12:19:43 AM GMT
Herding CodeSearchSubscribe to RSSPosted by adminPosted in interview, podcast This week on Herding Code, K Scott leads a conversation with ASP.NET Insider and MVP, Javier Lozano, about his open source project, MVC Turbine, and extensibility and composition with ASP.NET MVC.Javier provides a twitter-like overview of his open source project: ?MVC Turbine helps you build modular applications on top of ASP.NET MVC and that?s pretty much it.? K Scott asks about the advantages of using MVC Turbine to add fea... (more)
category: Technology | clicked: 0 | comment | | source: herdingcode.com
tags: ASP.NET MVC
1
Awaaz

Heartysoft.com | Encrypted Hidden Redux : Let's Get Salty

published 176 days, 20 hours, 15 minutes ago posted by amit_it7amit_it7 176 days, 21 hours, 26 minutes ago
Saturday, March 13, 2010 11:39:39 PM GMT Saturday, March 13, 2010 10:27:55 PM GMT
In this article, Ashic Mahtab shows an elegant, reusable and unobtrusive way in which to persist sensitive data to the browser in hidden inputs and restoring them on postback without needing to change any code in controllers or actions. The approach is an improvement of his previous article and incorporates a per session salt during encryption. (more)
category: Technology | clicked: 0 | comment | | source: www.heartysoft.com
tags: ASP.NET MVC, Security
2
Awaaz

The new ASP.NET website - Jon Galloway

published 176 days, 23 hours, 24 minutes ago posted by amit_it7amit_it7 178 days, 19 hours, 22 minutes ago
Saturday, March 13, 2010 8:29:46 PM GMT Friday, March 12, 2010 12:31:52 AM GMT
The new ASP.NET website We launched a major refresh of the ASP.NET website today. It was really exciting to be a part of the update process, working with lots of very talented people including Scott Guthrie and Scott Hanselman. It?s a pretty major update, including:New site-wide designRedesigned Home page and Getting Started sections which streamline the experience for those who are new to ASP.NETRevised and updated content areas for both ASP.NET Web Forms and MVCReviewed, re-categorized, and where appr... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET, ASP.NET MVC, Learn ASP.Net, Open Source
1
Awaaz

JQueryUI Datepicker in ASP.Net MVC | Rajeesh's Blog

published 177 days, 20 hours, 18 minutes ago posted by amit_it7amit_it7 178 days, 19 hours, 24 minutes ago
Friday, March 12, 2010 11:36:10 PM GMT Friday, March 12, 2010 12:30:30 AM GMT
JQueryUI Datepicker in ASP.Net MVC Technocrati code : M2U2PWSNTKW3 Datepicker is nice and cool plugin for displaying the calendar with ease. It is very easy to use JQuery plugin, it comes as part of JQueryUI library, so if you want to use this ? first download JQueryUI from http://jqueryui.com/download and also download JQuery(http://docs.jquery.com/Downloading_jQuery) if you haven?t done yet. (more)
category: Technology | clicked: 0 | comment | | source: www.rajeeshcv.com
tags: ASP.NET MVC, DatePicker, jQuery UI
Previous 1 2 Next