CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Controller
<?php
 
abstract class Controller
{
 
    protected function __construct()
    {
        $this->that = $this;
    }
by rgb   December 29, 2011 @ 4:02am
36 Views
no comments
 
C#
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Mvc;
using Westwind.Utilities;
using System.ServiceModel.Syndication;
using CodePasteBusiness;
using System.Text;
using System.Collections;
using System.IO;
by Rick Strahl   August 10, 2009 @ 4:44pm
1013 Views
no comments
 
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Web.Routing;
 
namespace CodePasteMvc.Controllers
{
by Rick Strahl   July 20, 2009 @ 3:34pm
660 Views
no comments
 
C#
public class ShowSnippetViewModel
{
   
 
    public ShowSnippetViewModel(SnippetController controller)
    {
        this.Controller = controller;
    }
   SnippetController Controller = null;
by Rick Strahl   July 18, 2009 @ 4:38pm
190 Views
no comments
 
C#
public string GetTagLinkList(string tags)
{
    if (string.IsNullOrEmpty(tags))
        return string.Empty;
 
    string[] tagStrings = tags.Split( new char[1] {','}, StringSplitOptions.RemoveEmptyEntries);
 
    StringBuilder html = new StringBuilder();
    foreach (string tagString in tagStrings)
    {
by Rick Strahl   July 18, 2009 @ 3:41pm
199 Views
no comments
 
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Web.Routing;
 
namespace CodePasteMvc.Controllers
{
by Rick Strahl   July 12, 2009 @ 12:16pm
327 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate