Login or Sign Up to become a member!
LessThanDot Sit Logo

LessThanDot

All Blogs

Less Than Dot is a community of passionate IT professionals and enthusiasts dedicated to sharing technical knowledge, experience, and assistance. Inside you will find reference materials, interesting technical discussions, and expert tips and commentary. Once you register for an account you will have immediate access to the forums and all past articles and commentaries.

LTD Social Sitings

Lessthandot twitter Lessthandot Linkedin Lessthandot friendfeed Lessthandot facebook Lessthandot rss

Note: Watch for social icons on posts by your favorite authors to follow their postings on these and other social sites.

Your profile

    Search

    XML Feeds

    Google Ads

    Tags: asp.net mvc

    comments

    Handling Unauthenticated AJAX Requests

    by Alex Ullrich on Feb 15, 2012 in categories UI Development, ASP.NET, AJAX. Article views: 1809 views

    A common pattern that I use in creating ajaxy applications is to return a small HTML fragment from the request, and then inject this fragment into the DOM in the callback executed after a successful request. This tends to be a bit simpler than returnin…

    Read More...
    comments

    The purpose of the integration build is to bring potential issues to the surface as quickly as possible. Unit tests run quickly and adding them to the continuous integration build helps flush out defects as close to the beginning of the process as possible. Generally build engines will support unit test framework by directly integrating with them or by providing an ability to execute the test framework and import their results.

    Read More...
    comments

    It can be challenging to add unit testing to a project that was built without planning to incorporate it. The ASP.Net MVC Music Store tutorial was not built with unit testing in mind, but today we're going to walk through the addition of Controller unit tests, focusing on a controller that directly references Entity Framework objects and implicitly interacts with ASP.Net Membership objects and Request data from the current HttpContext.

    Read More...
    comments

    A continuous integration server verifies that all of the currently committed changes play well together and reduces the elapsed time between a team member committing a change and finding out it leaves the build in a poor state. The faster we find out about a defect or unstable build, the fresher the changes are in our minds and the faster we can fix it.

    Read More...
    comments

    I find that often the hardest part of trying a new technology or principle is finding a project that is simple enough to work on in my spare time, yet complex enough to be useful. Several weeks ago I came up with the idea to use a common project to serve as a platform for additional projects and experiments. The first project, build an automated pipeline that will verify the project remains stable (or notify me when it isn't) throughout its lifetime.

    Read More...
    comments

    Patch for the ASP.NET Padding Oracle vulnerability has been released

    by SQLDenis on Sep 28, 2010 in categories ASP.NET. Article views: 2037 views

    If you are running an ASP.NET, ASP.NET MVC or Sharepoint site, grab the patch for the ASP.NET Padding Oracle vulnerability Some info: This security update resolves a publicly disclosed vulnerability in ASP.NET. The vulnerability could allow informa…

    Read More...
    comments

    Microsoft has released ASP.NET MVC 2 RTM for Visual Studio 2008 SP1.

    Note Because Visual Studio 2008 and Visual Studio 2010 RC share a component of ASP.NET MVC 2, installing the ASP.NET MVC 2 RTM release on a computer where Visual Studio 2010 RC is also installed is not supported.

    New Features in ASP.NET MVC 2 RTM

    The following features are new since the RC release of ASP.NET MVC 2.

    Templated Helpers Allow You to Specify Extra View Data

    ASP.NET MVC 2 now includes new overloads of the EditorFor and DisplayFor methods. These overl...

    Read More...
    comments

    ASP.NET MVC 2 RC 2 has been released and is available for download.

    For those that don't know what ASP.NET MVC 2 is. ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view,...

    Read More...
    comments

    Setting up SQL Server with ASP.NET MVC

    by SQLDenis on Jan 17, 2010 in categories Microsoft IIS, ASP.NET. Article views: 11312 views

    If you download ASP.NET MVC from Microsoft, install it and create a MVC website you might run into a couple of gotchas in regards to the database. First of all ASP.NET MVC use SQL Server Express by default in the connection string. So if you were to run your ASP.NET MVC website, then clicking on login you would get this error:

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and...

    Read More...
    comments

    In my previous post (not so long ago). I talked about the Actionlink and it not being very refactor friendly because of all the magic strings in it.

    But there was a strongly typed version out there somewhere that didn't work all the time but I couldn't find it at that time.

    Well it is hiding here and you can dowload it by clicking on the ASP.NET MVC v1.0 Futures link.

    ...
    Read More...

    :: Next >>