Web Dev And Stuff
ASP.NET from the G(r)eek side
-
JavaScript is disabled - Should I Care?
Many times a Web Developer faces the question “This won’t work if JavaScript is disabled. Should I change it?” If it’s something simple like a read more…
-
ASP.NET MVC SubmitLink with jQuery - Using an a tag as a submit button
The easiest way to submit a form is to use the input tag with the submit type [read more…]
-
Visual Studio - A Common Replace Scenario
Visual Studio has a build in Replace function that uses Regular Expressions. Let’s consider the following scenario:
-
Creating classes in Javascript - Prototype method
Javascript is weeeell a script-based language. But over the years it has evolved a lot! So can we develop in an Object Oriented Way using javascript? [read more…]
-
A simple SQL quiz
Today at work a colleague came up with a really interesting question. Let’s consider this [read more…]
-
[Design Patterns] Null Object Pattern
Design patterns are a chapter that I believe every developer should be familiar with. Design patterns are not to be used in every line of code but you should know as many as you can in order to know when to use them – when they will simplify your code [read more…].
-
WebMatrix - Facebook Connect Sample [Facebook Helper]
Although using Facebook connect is really easy via Facebook Helper inside WebMatrix I thought why not making it even simpler by providing a ready to run sample! [read more…]
-
Creating a WebDeploy configuration file
WebMatrix (and Visual Studio) have a publish method called WebDeploy. Using WebDeploy you can upload all for files along with your database. Either it’s MySQL or SQL Server.
-
Url Rewriting - Get the modified url
If you are using Url rewriting in your app then I strongly suggest to take a look at Url Routing which is available for ASP.NET MVC as well as ASP.NET Webforms (.NET 3.5 SP1).[more…]
-
ASP.NET MVC or Webforms? Why not both?
In many conversations between ASP.NET developers, the most common question this time of the year is what technology should someone use in order to develop a web application. Both MVC and Webforms have … [more]