ASP.net - Site Root - StudentGuru

ASP.net

Awesome Super Pages
  • ASP.net

    Installing a package with NuGet Package Manager (former NuPack)

    • 0 Comments
    In order to start using NuGet we need to download the Visual Studio add-in from codeplex. NuGet packages are an excellent way of packaging libraries in a way that can be used and removed from a project very easy. In WebMatrix   Facebook helpers are...
  • ASP.net

    Creating a NuGet package (ex NuPack)

    • 0 Comments
    In a previous post a mentioned a BBCode helper based on an existing library ( BBCode Parser ). In this post let’s se how can we create a package using NuGet in order to be used via the package manager inside Visual Studio! [ read more… ]
  • ASP.net

    Using Entity Framework and SQL Compact 4.0

    • 0 Comments
    Recently I developed a website that was built with WebMatrix. The scenario required database interaction and I wanted to use SQL Compact in order to be more portable. But I didn’t want to use the classic way of accessing my data via SQL queries. So I...
  • ASP.net

    Teched 2010 [Berlin] - Day 1

    • 0 Comments
    First day of Teched 2010 has ended. Today was more about socializing and connecting with others rather than attending sessions. I did attend the keynote and from what I saw Microsoft is giving a LOT of attention to the cloud. The process of building your...
  • ASP.net

    Teched 2010 [Berlin] - Day2 - A lap around WebMatrix (Beta 3)

    • 0 Comments
    Starting my 2nd day at Teched the first session was “A lap around WebMatrix ”. WebMatrix is a simple to understand IDE but nevertheless fully featured when it comes to develop Websites[ read more… ]
  • ASP.net

    Teched 2010 [Berlin] - Day 2 - OpenData for the Open Web

    • 0 Comments
    This session was presented by Jonathan Carter (@ lostintanget ). What is OpenData ( OData )? [ read more… ]
  • ASP.net

    Teched 2010 [Berlin] - Day 2 - TFS 2010 Best Practices

    • 0 Comments
    In this session were presented some practices for TFS that are intended to make your life easier while working with it.[ read more… ]
  • ASP.net

    Teched 2010 [Berlin] - Day 2 - Entity Framework and Live@edu

    • 0 Comments
    Next sessions in the 2nd day where an Entity Framework (level 400, which is like really advanced) related interactive session and a session about Live@edu . [ read more… ]
  • ASP.net

    Teched 2010 [Berlin] - Day 2 - Visual Studio 2010 Tips `n Tricks

    • 0 Comments
    This session was all about VS and how can we be more productive using it. A interesting fact is that VS is currently the 2nd largest product by Microsoft after Windows! [ read more… ]
  • ASP.net

    ASP.NET MVC or Webforms? Why not both?

    • 0 Comments
    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]
  • ASP.net

    Url Rewriting - Get the modified url

    • 0 Comments
    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

    Creating a WebDeploy configuration file

    • 0 Comments
    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. So if your hosting provider supports WebDeploy I strongly suggest to use it!...
  • ASP.net

    WebMatrix - Facebook Connect Sample [Facebook Helper]

    • 0 Comments
    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… ]
  • ASP.net

    [Design Patterns] Null Object Pattern

    • 0 Comments
    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...
  • ASP.net

    A simple SQL quiz

    • 0 Comments
    Today at work a colleague came up with a really interesting question. Let’s consider this [ read more… ]
  • ASP.net

    Creating classes in Javascript - Prototype method

    • 0 Comments
    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… ]
  • ASP.net

    Visual Studio - A Common Replace Scenario

    • 0 Comments
    Visual Studio has a build in Replace function that uses Regular Expressions. Let’s consider the following scenario: Although it’s not “good” code many times a developer has to write the following code [ read more… ]
  • ASP.net

    ASP.NET MVC SubmitLink with jQuery - Using an a tag as a submit button

    • 0 Comments
    The easiest way to submit a form is to use the input tag with the submit type [ read more… ]
  • ASP.net

    JavaScript is disabled - Should I Care?

    • 0 Comments
    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

    Linked-In OAuth Library

    • 0 Comments
    I uploaded a package in Nuget Gallery that simplifies the interaction with linked-in. Uses a modified version of Hammock read more…
  • ASP.net

    Hope Driven Development - Are you doing it?

    • 0 Comments
    HDD (and it don’t mean Hard Disk Drive ☺) is intuitively a bad approach on Software Development. If someone tells you that many times is doing Hope Driven Development, only by name you might say “Oh that’s [ read more …]
  • ASP.net

    Detect if Firebug is enabled and deny access

    • 0 Comments
    Firebug is an essential tool for every web developer. It allows to do many things such as script debugging, DOM manipulation etc. What happens though when it get’s to the hand of an experienced attacker? Then it could [ read more …]
  • ASP.net

    ASP.NET MVC 3 - A RadioButtonList for Enum Properties

    • 0 Comments
    ASP.NET MVC3 doesn’t have a built-in RadioButtonList helper and there are times that I want to display an Enum property. I can always do that using a [ read more …]
  • ASP.net

    ASP.NET MVC - Passing a Flag Enum to an Action as Parameter

    • 0 Comments
    A flag Enum is an Enumeration that can hold multiple values per instance An example of such Enum is: [ read more …]
  • ASP.net

    Where is the bug? C#

    • 0 Comments
    Below are a few lines of code written in C#. Is the code bug-free? What will this print in the console? Can you do it without VS? [ read more... ]