Follow Us!
-
Recent Posts
Categories
- [—].Net (45)
- [+]ASP.NET (3)
- [+]ASP.NET Dynamic Data (1)
- [+]Entity Framework (2)
- [+]Linq to SharePoint (3)
- [+]Linq to SQL (3)
- [—]MVC (7)
- Connect with TCSC on Facebook
- Fixing Telerik error: "Microsoft JScript runtime error: Object doesn't support this property or method"
- Implementing Delete Confirmation with JQuery
- Join the TCSC Team!
- Managing multiple environments in asp.net applications
- Setting default focus in MVC applications with JQuery
- UI messaging in MVC
- [+]WCF (4)
- Connect with TCSC on Facebook
- Creating a Database Backup and Restoring it in Code
- Creating an ASP.NET Dynamic Data Web Application
- Debugging a T4 Template
- Developing a Webpart with a Dynamic UI
- Fixing Telerik error: "Microsoft JScript runtime error: Object doesn't support this property or method"
- Handy Extension Methods
- Implementing Delete Confirmation with JQuery
- Join the TCSC Team!
- Managing multiple environments in asp.net applications
- On WCF Performance
- Overloading vs. Optional Parameters
- Sitecore Layouts and Code Blocks
- Team Foundation Server: Unshelving another user’s changes across branches
- UI messaging in MVC
- Using OData and LinqPad 4 to Create Your URIs for You
- Visual Studio Tips & Tricks #2 Ctl+K, Ctl+v lets you browse for objects in your solution.
- Visual Studio Tips & Tricks #3
- Visual Studio Tips & Tricks #4
- Visual Studio Tips & Tricks #5
- Visual Studio Tips & Tricks #6
- Visual Studio Tips and Tricks #1
- [+]ASP.NET (3)
- [+]BizTalk 2010 (1)
- [+]Business Intelligence (6)
- [+]Community (1)
- [+]CSS (5)
- [+]Events (5)
- [+]Firebug (1)
- [+]IIS (1)
- [+]InfoPath (2)
- [+]Internet Explorer (1)
- [+]JavaScript (2)
- [+]JQuery (4)
- [+]Office365 (1)
- [+]PerformancePoint (1)
- [+]SharePoint 2007 (25)
- [+]Administration (3)
- [+]Development (8)
- [+]PowerShell (2)
- [+]SharePoint Designer (1)
- [+]Administration (3)
- [+]SharePoint 2010 (84)
- [+]Administration (22)
- [+]Configuration (9)
- [+]Development (9)
- [+]PowerShell (13)
- [+]SharePoint Conference (1)
- [+]SharePoint Designer (6)
- [+]Administration (22)
- [+]SharePoint Online (1)
- [+]Silverlight (1)
- [+]Sitecore (19)
- [+]Administration (3)
- [+]Configuration (2)
- [+]Development (6)
- [+]Administration (3)
- [+]SQL (7)
- [+]Replication (1)
- [+]Replication (1)
- [+]SSIS (2)
- [+]Telerik (1)
- [+]Uncategorized (9)
- [+]Visual Studio (6)
- [—].Net (45)
Tags
Network Engineer New Hires Office 365 Office Web Apps ParallelPeriod PerformancePoint PowerShell ProjectTypeGuids Red Gate Richmond Search Service Applications Service Pack 1 Sharepoint SharePoint 2007 SharePoint 2010 SharePoint Conference SharePoint Designer 2010 SharePoint Online SharePoint Saturday Silverlight SPC11 SPMetal SQL SQL 2008 SSAS SSIS Styles TCSC Technical Project Manager Telerik The Computer Solution Company The Computer Solution Company of VA Transactional Replication Uneven Periods User Profile Service ViewData vs TempData Visio Visio Services Web Part Pages Web Parts Windows 8 Workflows WSPBuilder XML CommentsTwitter
- I'm hiring! SharePoint Analyst and Developer at TCSC - Washington D.C. Metro Area #jobs http://t.co/0SkEPQvp 23 hours ago
- New post on #WCF Performance http://t.co/fPU2eBVV #dotnet #aspnet 3 days ago
- #SharePoint My Site Custom Quota Template Not Applying http://t.co/KmrQL7N5 #SP2010 3 days ago
- Photos from the #RVA #CFALeadercast are now on our Facebook page! http://t.co/PPXCt0J1 4 days ago
- #Sitecore Quick Tips - Device Fallback http://t.co/MWUGKKtm 4 days ago
Archives
-
Meta
Tag Archives: MVC
Managing multiple environments in asp.net applications
Managing projects in multiple environments can be a challenge. IT departments commonly have Development, Test, QA, and Production environments, each with distinct databases, WCF services and other settings. Deploying to these different environments requires careful attention to how these settings are stored in the web.config.
Fixing Telerik error: “Microsoft JScript runtime error: Object doesn’t support this property or method”
I ran into this issue upgrading a site to use Telerik’s MVC controls. Once I added all the Telerik includes I would get the ‘Microsoft JScript runtime error: Object doesn’t support this property or method’ error on every page. Only happened in IE 8 though. After some troubleshooting I deduced the following line was throwing the error:
UI messaging in MVC
Handling errors and displaying information back to the user is a common task in developing web applications. Here is a simple way of managing that process.
Implementing Delete Confirmation with JQuery
Implementing delete confirmation with JQuery is easy! Start by adding the class “confirmdelete” to your button or link in your view:
Setting default focus in MVC applications with JQuery
I build a lot of web-based form applications and one of the features I like to add is the ability to have the field focus set when a form is opened. Here is a fast and dirty way to do this for MVC applications.