geochatz

Stories kicked by geochatz

Multiple login pages with ASP.NET MVC(sblakemore.com)

submitted by onesteronester(90) 2 months, 7 days ago

It might be nice to have several different login forms for different types of users. For example for Admins, Affiliates, Customers etc. This causes a problem because the Forms Authentication bits assume there will be a single login page for the whole application and it’s only possible to set a single loginUrl in the web.config to redirect users requesting pages which require authentication. read more...

add a comment |category: |Views: 261

tags: another

Build Facebook style infinite scroll with knockout.js and Last.fm API(www.strathweb.com)

submitted by rapackirapacki(55) 2 months, 7 days ago

Learn knockout.js by building a dynamic music history web app on top of Last.FM API, featuring FB/twitter style infinite scroll. read more...

add a comment |category: |Views: 223

tags: another

How to use Facebook Connect(advanceddotnettutorial.blogspot.com)

submitted by learndotnetlearndotnet(1053) 1 year, 5 months ago

This article will demonstrates how to connect to facebook from localhost and fetch saved information from facebook on localhost. read more...

add a comment |category: |Views: 26

tags: another

Install WebMatrix helpers to your ASP.NET MVC 3 project with NuGet(www.itbully.com)

submitted by geochatzgeochatz(234) 1 year, 6 months ago

You may have noticed that there are some cool helpers in WebMatrix that you may want to use in your current ASP.NET MVC 3 project. The good thing is that you can use them. The only thing you have to do is just download them with NuGet. read more...

add a comment |category: |Views: 18

tags: another

NuGet Package Management for .NET(www.itbully.com)

submitted by geochatzgeochatz(234) 1 year, 6 months ago

Most of us use third-party libraries when developing a web project, so you can easily understand how difficult is sometimes to find the latest version of the library you need, keep it updated or even uninstall it easily without having to spend two hours in order to remove dependencies and delete unnecessary code. If these are your needs then you should check NuGet. read more...

add a comment |category: |Views: 9

tags: another

ScottGu: Introducing “Razor” – a new view engine for ASP.NET(weblogs.asp.net)

submitted by JemmJemm(9604) 1 year, 10 months ago

"ASP.NET MVC has always supported the concept of “view engines” – which are the pluggable modules that implement different template syntax options. The “default” view engine for ASP.NET MVC today uses the same .aspx/.ascx/.master file templates as ASP.NET Web Forms. Other popular ASP.NET MVC view engines used today include Spark and NHaml. The new view-engine option we’ve been working on is optimized around HTML generation using a code-focused templating approach. The codename for this new view engine is “Razor”, and we’ll be shipping the first public beta of it shortly." read more...

add a comment |category: |Views: 552

tags: another

ASP.NET MVC - MvcSiteMapProvider 2.0 is out!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 11 months ago

MvcSiteMapProvider is, as the name implies, an ASP.NET MVC SiteMapProvider implementation for the ASP.NET MVC framework. Targeted at ASP.NET MVC 2, it provides sitemap XML functionality and interoperability with the classic ASP.NET sitemap controls, like the SiteMapPath control for rendering breadcrumbs and the Menu control. Based on areas, controller and action method names rather than hardcoded URL references, sitemap nodes are completely dynamic based on the routing engine used in an application. The dynamic character of ASP.NET MVC is followed in the MvcSiteMapProvider: there are numerous extensibility points that allow you to extend the basic functionality offered. read more...

add a comment |category: |Views: 222

tags: another

PLINQO 5.0 Released(community.codesmithtools.com)

submitted by tduponttdupont(1259) 1 year, 11 months ago

PLINQO is an open source ORM designed to replace and enhance LINQ to SQL. Notable new 5.0 features include: Added Visual Studio 2010 and .NET 4 support. Updated QuickStart with latest Dynamic Data and DataServices. Added SQLCacheDependancy support. Added IQueryable cache extensions. Added Include extension for advanced eager loading. Improved AuditLog, now includes updates after SubmitChanges. read more...

add a comment |category: |Views: 361

tags: another

Dean Hume - MVC Google Maps HtmlHelper - Dynamic Maps(www.deanhume.com)

submitted by deanomachinodeanomachino(764) 2 years ago

I've recently been looking for a MVC helper class for Google maps. I came across this well written MVC HtmlHelper for static Google maps. Unfortunately I was looking for a helper that was for the dynamic version of Google charts. I needed to be able to add markers on the maps with dynamic text and possibly even images. read more...

1 comment |category: |Views: 19

tags: another

Resharper 5 Released(web2asp.net)

submitted by ajaxianajaxian(105) 2 years, 1 month ago

ReSharper 5 has now been released simultaneously with Visual Studio 2010. read more...

add a comment |category: |Views: 329

tags: another

ASP.NET MVC 2 RC 2 Released(haacked.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another

Using JqGrid with ASP.NET MVC(www.codecapers.com)

submitted by mceranskimceranski(345) 2 years, 4 months ago

A simple yet effective tutorial on how to implement jqGrid in ASP.NET MVC. read more...

add a comment |category: |Views: 90

tags: another

ScottGu: ASP.NET MVC 2: Model Validation(weblogs.asp.net)

submitted by JemmJemm(9604) 2 years, 4 months ago

"Validating user-input and enforcing business rules/logic is a core requirement of most web applications. ASP.NET MVC 2 includes a bunch of new features that make validating user input and enforcing validation logic on models/viewmodels significantly easier. These features are designed so that the validation logic is always enforced on the server, and can optionally also be enforced on the client via JavaScript" read more...

4 comments |category: |Views: 630

tags: another

MvcMaps Preview 1 – A Unified Bing/Google Maps API for ASP.NET MVC(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 6 months ago

I spent some time lately working on bringing some of the concepts of Web.Maps.VE to ASP.NET MVC. The concepts I’m referring to are Simplicity and Ease of Development in making the implementation of mapping within ASP.NET MVC applications as simple as possible along with the Flexibility and Customizability of the Base Mapping API itself. Then I thought, Since I’m building an abstraction layer to simplify Bing Maps development, why not implement it in a flexible manor as to be able to support other Mapping API’s as well? The result of such an effort in a nice Unified API that allows virtually the same code to be written when implementing either Bing Maps or Google Maps. In fact, all you need to do to change your application over to using one mapping provider instead of the other is to just change a single line of code. read more...

add a comment |category: |Views: 136

tags: another

Recording of my session at Remix 2009 - ASP.NET MVC(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 7 months ago

Session recording of my remix09 talk: ASP.NET MVC Wisdom Abstract: "Building a Twitter clone in 60 minutes, featuring what's new in ASP.NET MVC 2 preview 1 and focusing on some of the core ASP.NET MVC features like security and routing." read more...

add a comment |category: |Views: 24

tags: another

Regex Hero Embraces MVC, OpenID, and Cloud Computing(regexhero.net)

submitted by BucketSoftBucketSoft(324) 2 years, 7 months ago

Steve Wortham tries to stay at the forefront of technology by rewriting the Regex Hero site in ASP.NET MVC, implementing an OpenID login/registration system, and adding "cloud computing" features to the Regex Hero tester. read more...

add a comment |category: |Views: 15

tags: another