Aaron Rose's Profile

I love programming, improving myself and helping the community I am a member of. I also love drinking tea and cookies. I hate hamburger and other fatty things, and french fries and so on, basically all fast food things. Being healthy, both mentally and physical. Pff who care what I like tho :) I d...

I am interested in Computer,Books,People,Neuroscience,Programming,Walking,Talking,Socializing,Music,Cinema,Meetups. My favorite music are Evanescence- Wash It All Away. Movies: District 9,Finding Neverland,American History X,The Lord of The Rings Trilogy. TV: Heroes,How I met your mother,Avatar,Ouran High School Host Club. Books: How we decide,The Physics of Impossible. My Heros are People with Kind Heart.

Member since Oct 30, 2009, follows 8 people, 2 public groups, 99 public bookmarks (99 total).

More »
Tags

Recent Tags:
Top Tags:

More »
Recent Bookmarks and Annotations

  • ASP.NET MVC Framework (Part 3): Passing ViewData from Controllers to Views - ScottGu's Blog about 8 hours ago
    • When a browser sends a HTTP request to our web site, the ASP.NET MVC Framework will use its URL routing engine to map the incoming request to an action method on a controller class to process it.  Controllers in a MVC based application are responsible for processing incoming requests, handling user input and interactions, and executing application logic based on them (retrieving and updating model data stored in a database, etc).
    • Views should not contain any application logic or database retrieval code, instead all application/data logic should only be handled by the controller class.
    • 4 more annotations...
  • Route Class (System.Web.Routing) about 14 hours ago
    • When a segment is enclosed in braces ( and ), the segment is referred to a URL parameter. ASP.NET routing retrieves the value from the request and assigns it to the URL parameter
    • Set the Defaults property to a RouteValueDictionary object that includes values that are used if a parameter is missing from the URL or to set additional values that are not parameterized in the URL
    • 1 more annotations...
  • Creating Custom Routes : Creating Custom Routes : The Official Microsoft ASP.NET Site about 15 hours ago
    • The order of the routes that you add
      to the route table is important
    • The custom route maps the incoming
      request to a controller named Archive and invokes the Entry() action.
      When the Entry() method is called, the entry date is passed as a parameter
      named entryDate.
  • ASP.NET MVC Framework (Part 2): URL Routing - ScottGu's Blog about 15 hours ago
    • The "Url" property on the Route class defines the Url matching rule that should be used to evaluate if a route rule applies to a particular incoming request.  It also defines how the URL should be tokenized for parameters.  Replaceable parameters within the URL are defined using a [ParamName] syntax.  As we'll see later, we aren't restricted to a fixed set of "well known" parameter names - you can have any number of arbitrary parameters you want within the URL.  For example, I could use a Url rule of "/Blogs/[Username]/Archive/[Year]/[Month]/[Day]/[Title]" to tokenize incoming URLs to blog posts - and have the MVC framework automatically parse and pass UserName, Year, Month, Day and Title parameters to my Controller's action method.
    • The "Defaults" property on the Route class defines a dictionary of default values to use in the event that the incoming URL doesn't include one of the parameter values specified. 
    • 5 more annotations...
  • ASP.NET MVC Routing Overview : ASP.NET MVC Routing Overview : The Official Microsoft ASP.NET Site about 16 hours ago
    • The ASP.NET Routing module is responsible for mapping incoming
      browser requests to particular MVC controller actions
    • ASP.NET

      Routing is setup in two places.
    • 3 more annotations...
  • Understanding the ASP.NET MVC Execution Process : Understanding the ASP.NET MVC Execution Process : The Official Microsoft ASP.NET Site about 17 hours ago
    • Requests to an ASP.NET MVC-based Web application first pass through
      the UrlRoutingModule object, which is an HTTP module. This module
      parses the request and performs route selection. The UrlRoutingModule

      object selects the first route object that matches the current request.
    • If no routes match,
      the UrlRoutingModule object does nothing and lets the request
      fall back to the regular ASP.NET or IIS request processing.
  • Creating an Action : Creating an Action : The Official Microsoft ASP.NET Site about 17 hours ago
      • In order to be exposed to the universe
        as an action, a method must meet certain requirements:


        • The method must be public.
        • The method cannot be a static
          method.
        • The method cannot be an
          extension method.
        • The method cannot be a constructor,
          getter, or setter.
        • The method cannot have open
          generic types.
        • The method is not a method
          of the controller base class.
        • The method cannot contain
          ref
          or out parameters.
    • Notice that there are no restrictions
      on the return type of a controller action. A controller action can return
      a string, a DateTime, an instance of the Random class, or void. The
      ASP.NET MVC framework will convert any return type that is not an action
      result into a string and render the string to the browser.
    • 1 more annotations...
  • Creating a Controller : Creating a Controller : The Official Microsoft ASP.NET Site about 17 hours ago
    • If you create a controller that is
      missing the Controller suffix then you won’t be able to invoke
      the controller. Don’t do this -- I’ve wasted countless hours of
      my life after making this mistake.
    • [AcceptVerbs(HttpVerbs.Post)]
      public ActionResult Create(FormCollection collection)
      {
      try
      {
      // TODO: Add insert logic here

      return RedirectToAction("Index");
      }
      catch
      {
      return View();
      }
      }
    • 1 more annotations...
  • ASP.NET MVC Controller Overview : ASP.NET MVC Controller Overview : The Official Microsoft ASP.NET Site about 17 hours ago
    • A controller exposes controller actions.
      An action is a method on a controller that gets called when you enter
      a particular URL in your browser address bar
    • A controller action must be a public
      method of a controller class. C# methods, by default, are private methods.
    • 7 more annotations...
  • Using jQuery with Other Libraries - jQuery JavaScript Library on 2009-12-20
    • If you want to make sure that jQuery won't conflict with another library - but you want the benefit of a short name, you could do something like this:
    • var $j = jQuery.noConflict();

      // Use jQuery via $j(...)
      $j(document).ready(function(){
      $j("div").hide();
      });

More »
Groups

  • .Net Developers

    3 members, 17 items

    This group is dedicated to developers who are using .NET Tools to build software solutions. Also you can share and find content about Sql Server and other Microsoft technologies.

  • Coders

    325 members, 1623 items

    A group for and about coders and programming -- theory, practice, and research.

Diigo is about better ways to research, share and collaborate on information. Learn more »

Join Diigo