This commit is contained in:
Florian Rappl 2015-02-03 22:11:54 +01:00
Родитель 54b69eeaef
Коммит 7ecad50cfb
15 изменённых файлов: 55 добавлений и 49 удалений

Просмотреть файл

@ -3,7 +3,19 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22310.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AngleSharp.TestSite", "AngleSharp.TestSite\AngleSharp.TestSite.csproj", "{7C4BE9B9-30E6-411B-8403-F05755533583}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7C4BE9B9-30E6-411B-8403-F05755533583}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C4BE9B9-30E6-411B-8403-F05755533583}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C4BE9B9-30E6-411B-8403-F05755533583}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C4BE9B9-30E6-411B-8403-F05755533583}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection

Просмотреть файл

@ -1,8 +1,8 @@
using System.Web;
using System.Web.Mvc;
namespace AngleSharpSubmitTest
namespace AngleSharp.TestSite.Config
{
using System.Web;
using System.Web.Mvc;
public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)

Просмотреть файл

@ -1,8 +1,8 @@
using System.Web.Mvc;
using System.Web.Routing;
namespace AngleSharpSubmitTest
namespace AngleSharp.TestSite.Config
{
using System.Web.Mvc;
using System.Web.Routing;
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)

Просмотреть файл

@ -1,13 +1,13 @@
using AngleSharpSubmitTest.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace AngleSharpSubmitTest.Controllers
namespace AngleSharp.TestSite.Controllers
{
using AngleSharp.TestSite.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
public class TestsController : Controller
{
#region Urlencode

Просмотреть файл

@ -1 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="AngleSharpSubmitTest.MvcApplication" Language="C#" %>
<%@ Application Codebehind="Global.asax.cs" Inherits="AngleSharp.TestSite.MvcApplication" Language="C#" %>

Просмотреть файл

@ -1,14 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace AngleSharpSubmitTest
namespace AngleSharp.TestSite
{
public class MvcApplication : System.Web.HttpApplication
using AngleSharp.TestSite.Config;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
public class MvcApplication : HttpApplication
{
protected void Application_Start()
{

Просмотреть файл

@ -1,10 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AngleSharpSubmitTest.Models
namespace AngleSharp.TestSite.Models
{
using System;
using System.Web;
public class FileModel
{
public String Name

Просмотреть файл

@ -1,10 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AngleSharpSubmitTest.Models
namespace AngleSharp.TestSite.Models
{
using System;
using System.Collections.Generic;
using System.Web;
public class FilesModel
{
public String Name

Просмотреть файл

@ -1,7 +1,7 @@
using System;
namespace AngleSharpSubmitTest.Models
namespace AngleSharp.TestSite.Models
{
using System;
public class NormalModel
{
public String Name

Просмотреть файл

@ -1,4 +1,4 @@
@model AngleSharpSubmitTest.Models.FileModel
@model AngleSharp.TestSite.Models.FileModel
@{
ViewBag.Title = "PostMultipartFile";
}

Просмотреть файл

@ -1,4 +1,4 @@
@model AngleSharpSubmitTest.Models.FilesModel
@model AngleSharp.TestSite.Models.FilesModel
@{
ViewBag.Title = "PostMultipartFiles";
}

Просмотреть файл

@ -1,4 +1,4 @@
@model AngleSharpSubmitTest.Models.NormalModel
@model AngleSharp.TestSite.Models.NormalModel
@{
ViewBag.Title = "PostMultipartNormal";
}

Просмотреть файл

@ -1,4 +1,4 @@
@model AngleSharpSubmitTest.Models.FileModel
@model AngleSharp.TestSite.Models.FileModel
@{
ViewBag.Title = "PostUrlencodeFile";
}

Просмотреть файл

@ -1,4 +1,4 @@
@model AngleSharpSubmitTest.Models.NormalModel
@model AngleSharp.TestSite.Models.NormalModel
@{
ViewBag.Title = "PostUrlencodeNormal";
}

Просмотреть файл

@ -17,7 +17,7 @@
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Optimization"/>
<add namespace="System.Web.Routing" />
<add namespace="AngleSharpSubmitTest" />
<add namespace="AngleSharp.TestSite" />
</namespaces>
</pages>
</system.web.webPages.razor>