zoals ik al zei, terug naar af

This commit is contained in:
Joham 2020-05-02 20:44:02 +02:00
parent 146f0eeb0a
commit 145f5e6a8b
119 changed files with 193454 additions and 193454 deletions

View file

@ -1,337 +1,337 @@
//!---------------------------------------------------------- //!----------------------------------------------------------
//! Copyright (C) Microsoft Corporation. All rights reserved. //! Copyright (C) Microsoft Corporation. All rights reserved.
//!---------------------------------------------------------- //!----------------------------------------------------------
//! MicrosoftMvcAjax.js //! MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc'); Type.registerNamespace('Sys.Mvc');
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxOptions // Sys.Mvc.AjaxOptions
Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; } Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.InsertionMode // Sys.Mvc.InsertionMode
Sys.Mvc.InsertionMode = function() { Sys.Mvc.InsertionMode = function() {
/// <field name="replace" type="Number" integer="true" static="true"> /// <field name="replace" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertBefore" type="Number" integer="true" static="true"> /// <field name="insertBefore" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertAfter" type="Number" integer="true" static="true"> /// <field name="insertAfter" type="Number" integer="true" static="true">
/// </field> /// </field>
}; };
Sys.Mvc.InsertionMode.prototype = { Sys.Mvc.InsertionMode.prototype = {
replace: 0, replace: 0,
insertBefore: 1, insertBefore: 1,
insertAfter: 2 insertAfter: 2
} }
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxContext // Sys.Mvc.AjaxContext
Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) { Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="updateTarget" type="Object" domElement="true"> /// <param name="updateTarget" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="loadingElement" type="Object" domElement="true"> /// <param name="loadingElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <field name="_insertionMode" type="Sys.Mvc.InsertionMode"> /// <field name="_insertionMode" type="Sys.Mvc.InsertionMode">
/// </field> /// </field>
/// <field name="_loadingElement" type="Object" domElement="true"> /// <field name="_loadingElement" type="Object" domElement="true">
/// </field> /// </field>
/// <field name="_response" type="Sys.Net.WebRequestExecutor"> /// <field name="_response" type="Sys.Net.WebRequestExecutor">
/// </field> /// </field>
/// <field name="_request" type="Sys.Net.WebRequest"> /// <field name="_request" type="Sys.Net.WebRequest">
/// </field> /// </field>
/// <field name="_updateTarget" type="Object" domElement="true"> /// <field name="_updateTarget" type="Object" domElement="true">
/// </field> /// </field>
this._request = request; this._request = request;
this._updateTarget = updateTarget; this._updateTarget = updateTarget;
this._loadingElement = loadingElement; this._loadingElement = loadingElement;
this._insertionMode = insertionMode; this._insertionMode = insertionMode;
} }
Sys.Mvc.AjaxContext.prototype = { Sys.Mvc.AjaxContext.prototype = {
_insertionMode: 0, _insertionMode: 0,
_loadingElement: null, _loadingElement: null,
_response: null, _response: null,
_request: null, _request: null,
_updateTarget: null, _updateTarget: null,
get_data: function Sys_Mvc_AjaxContext$get_data() { get_data: function Sys_Mvc_AjaxContext$get_data() {
/// <value type="String"></value> /// <value type="String"></value>
if (this._response) { if (this._response) {
return this._response.get_responseData(); return this._response.get_responseData();
} }
else { else {
return null; return null;
} }
}, },
get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() { get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() {
/// <value type="Sys.Mvc.InsertionMode"></value> /// <value type="Sys.Mvc.InsertionMode"></value>
return this._insertionMode; return this._insertionMode;
}, },
get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() { get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._loadingElement; return this._loadingElement;
}, },
get_response: function Sys_Mvc_AjaxContext$get_response() { get_response: function Sys_Mvc_AjaxContext$get_response() {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
return this._response; return this._response;
}, },
set_response: function Sys_Mvc_AjaxContext$set_response(value) { set_response: function Sys_Mvc_AjaxContext$set_response(value) {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
this._response = value; this._response = value;
return value; return value;
}, },
get_request: function Sys_Mvc_AjaxContext$get_request() { get_request: function Sys_Mvc_AjaxContext$get_request() {
/// <value type="Sys.Net.WebRequest"></value> /// <value type="Sys.Net.WebRequest"></value>
return this._request; return this._request;
}, },
get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() { get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._updateTarget; return this._updateTarget;
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncHyperlink // Sys.Mvc.AsyncHyperlink
Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() { Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() {
} }
Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) { Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) {
/// <param name="anchor" type="Object" domElement="true"> /// <param name="anchor" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.MvcHelpers // Sys.Mvc.MvcHelpers
Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() { Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() {
} }
Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) { Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <returns type="String"></returns> /// <returns type="String"></returns>
var formElements = form.elements; var formElements = form.elements;
var formBody = new Sys.StringBuilder(); var formBody = new Sys.StringBuilder();
var count = formElements.length; var count = formElements.length;
for (var i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
var element = formElements[i]; var element = formElements[i];
var name = element.name; var name = element.name;
if (!name || !name.length) { if (!name || !name.length) {
continue; continue;
} }
var tagName = element.tagName.toUpperCase(); var tagName = element.tagName.toUpperCase();
if (tagName === 'INPUT') { if (tagName === 'INPUT') {
var inputElement = element; var inputElement = element;
var type = inputElement.type; var type = inputElement.type;
if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) { if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(inputElement.value)); formBody.append(encodeURIComponent(inputElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
else if (tagName === 'SELECT') { else if (tagName === 'SELECT') {
var selectElement = element; var selectElement = element;
var optionCount = selectElement.options.length; var optionCount = selectElement.options.length;
for (var j = 0; j < optionCount; j++) { for (var j = 0; j < optionCount; j++) {
var optionElement = selectElement.options[j]; var optionElement = selectElement.options[j];
if (optionElement.selected) { if (optionElement.selected) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(optionElement.value)); formBody.append(encodeURIComponent(optionElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
} }
else if (tagName === 'TEXTAREA') { else if (tagName === 'TEXTAREA') {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent((element.value))); formBody.append(encodeURIComponent((element.value)));
formBody.append('&'); formBody.append('&');
} }
} }
return formBody.toString(); return formBody.toString();
} }
Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) { Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) {
/// <param name="url" type="String"> /// <param name="url" type="String">
/// </param> /// </param>
/// <param name="verb" type="String"> /// <param name="verb" type="String">
/// </param> /// </param>
/// <param name="body" type="String"> /// <param name="body" type="String">
/// </param> /// </param>
/// <param name="triggerElement" type="Object" domElement="true"> /// <param name="triggerElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
if (ajaxOptions.confirm) { if (ajaxOptions.confirm) {
if (!confirm(ajaxOptions.confirm)) { if (!confirm(ajaxOptions.confirm)) {
return; return;
} }
} }
if (ajaxOptions.url) { if (ajaxOptions.url) {
url = ajaxOptions.url; url = ajaxOptions.url;
} }
if (ajaxOptions.httpMethod) { if (ajaxOptions.httpMethod) {
verb = ajaxOptions.httpMethod; verb = ajaxOptions.httpMethod;
} }
if (body.length > 0 && !body.endsWith('&')) { if (body.length > 0 && !body.endsWith('&')) {
body += '&'; body += '&';
} }
body += 'X-Requested-With=XMLHttpRequest'; body += 'X-Requested-With=XMLHttpRequest';
var requestBody = ''; var requestBody = '';
if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') { if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') {
if (url.indexOf('?') > -1) { if (url.indexOf('?') > -1) {
if (!url.endsWith('&')) { if (!url.endsWith('&')) {
url += '&'; url += '&';
} }
url += body; url += body;
} }
else { else {
url += '?'; url += '?';
url += body; url += body;
} }
} }
else { else {
requestBody = body; requestBody = body;
} }
var request = new Sys.Net.WebRequest(); var request = new Sys.Net.WebRequest();
request.set_url(url); request.set_url(url);
request.set_httpVerb(verb); request.set_httpVerb(verb);
request.set_body(requestBody); request.set_body(requestBody);
if (verb.toUpperCase() === 'PUT') { if (verb.toUpperCase() === 'PUT') {
request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;';
} }
request.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; request.get_headers()['X-Requested-With'] = 'XMLHttpRequest';
var updateElement = null; var updateElement = null;
if (ajaxOptions.updateTargetId) { if (ajaxOptions.updateTargetId) {
updateElement = $get(ajaxOptions.updateTargetId); updateElement = $get(ajaxOptions.updateTargetId);
} }
var loadingElement = null; var loadingElement = null;
if (ajaxOptions.loadingElementId) { if (ajaxOptions.loadingElementId) {
loadingElement = $get(ajaxOptions.loadingElementId); loadingElement = $get(ajaxOptions.loadingElementId);
} }
var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode); var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode);
var continueRequest = true; var continueRequest = true;
if (ajaxOptions.onBegin) { if (ajaxOptions.onBegin) {
continueRequest = ajaxOptions.onBegin(ajaxContext) !== false; continueRequest = ajaxOptions.onBegin(ajaxContext) !== false;
} }
if (loadingElement) { if (loadingElement) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true);
} }
if (continueRequest) { if (continueRequest) {
request.add_completed(Function.createDelegate(null, function(executor) { request.add_completed(Function.createDelegate(null, function(executor) {
Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext); Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext);
})); }));
request.invoke(); request.invoke();
} }
} }
Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) { Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
/// <param name="ajaxContext" type="Sys.Mvc.AjaxContext"> /// <param name="ajaxContext" type="Sys.Mvc.AjaxContext">
/// </param> /// </param>
ajaxContext.set_response(request.get_executor()); ajaxContext.set_response(request.get_executor());
if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) { if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) {
return; return;
} }
var statusCode = ajaxContext.get_response().get_statusCode(); var statusCode = ajaxContext.get_response().get_statusCode();
if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) { if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) {
if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) { if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) {
var contentType = ajaxContext.get_response().getResponseHeader('Content-Type'); var contentType = ajaxContext.get_response().getResponseHeader('Content-Type');
if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) { if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) {
eval(ajaxContext.get_data()); eval(ajaxContext.get_data());
} }
else { else {
Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data()); Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data());
} }
} }
if (ajaxOptions.onSuccess) { if (ajaxOptions.onSuccess) {
ajaxOptions.onSuccess(ajaxContext); ajaxOptions.onSuccess(ajaxContext);
} }
} }
else { else {
if (ajaxOptions.onFailure) { if (ajaxOptions.onFailure) {
ajaxOptions.onFailure(ajaxContext); ajaxOptions.onFailure(ajaxContext);
} }
} }
if (ajaxContext.get_loadingElement()) { if (ajaxContext.get_loadingElement()) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false);
} }
} }
Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) { Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) {
/// <param name="target" type="Object" domElement="true"> /// <param name="target" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <param name="content" type="String"> /// <param name="content" type="String">
/// </param> /// </param>
if (target) { if (target) {
switch (insertionMode) { switch (insertionMode) {
case Sys.Mvc.InsertionMode.replace: case Sys.Mvc.InsertionMode.replace:
target.innerHTML = content; target.innerHTML = content;
break; break;
case Sys.Mvc.InsertionMode.insertBefore: case Sys.Mvc.InsertionMode.insertBefore:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = content + target.innerHTML.trimStart(); target.innerHTML = content + target.innerHTML.trimStart();
} }
break; break;
case Sys.Mvc.InsertionMode.insertAfter: case Sys.Mvc.InsertionMode.insertAfter:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = target.innerHTML.trimEnd() + content; target.innerHTML = target.innerHTML.trimEnd() + content;
} }
break; break;
} }
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncForm // Sys.Mvc.AsyncForm
Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() { Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() {
} }
Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) { Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
var body = Sys.Mvc.MvcHelpers._serializeForm(form); var body = Sys.Mvc.MvcHelpers._serializeForm(form);
Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions);
} }
Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext');
Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink');
Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers');
Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm');
// ---- Do not remove this footer ---- // ---- Do not remove this footer ----
// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) // Generated using Script# v0.5.0.0 (http://projects.nikhilk.net)
// ----------------------------------- // -----------------------------------

View file

@ -2,7 +2,7 @@
// Copyright (C) Microsoft Corporation. All rights reserved. // Copyright (C) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------- //----------------------------------------------------------
// MicrosoftMvcAjax.js // MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};} Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};}
Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2} Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2}
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;} Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;}

View file

@ -1,81 +1,81 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title>Azure Store Products</title> <title>Azure Store Products</title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<%if context.User.IsInRole("Home") then %> <%if context.User.IsInRole("Home") then %>
<h1><span class="product-category">Home</span> Products</h1> <h1><span class="product-category">Home</span> Products</h1>
<% else %> <% else %>
<h1><span class="product-category">Enterprise</span> Products</h1> <h1><span class="product-category">Enterprise</span> Products</h1>
<% end if %> <% end if %>
<label for="items">Select a product from the list:</label> <label for="items">Select a product from the list:</label>
<% <%
dim product dim product
dim myForm = Html.BeginForm("Add", "Home") %> dim myForm = Html.BeginForm("Add", "Home") %>
<select name="selectedItem" class="product-list" id="items" size="4"> <select name="selectedItem" class="product-list" id="items" size="4">
<% for each product in ViewData.Model %> <% for each product in ViewData.Model %>
<option value="<%=product%>"><%=product%></option> <option value="<%=product%>"><%=product%></option>
<% next %> <% next %>
</select> </select>
<a href="javascript:document.forms[0].submit();">Add item to cart</a> <a href="javascript:document.forms[0].submit();">Add item to cart</a>
<% myForm.dispose() %> <% myForm.dispose() %>
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,14 +1,14 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<% <%
if (Request.IsAuthenticated) { if (Request.IsAuthenticated) {
%> %>
Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>! Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>!
[ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ] [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ]
<% <%
} }
else { else {
%> %>
[ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ] [ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ]
<% <%
} }
%> %>

View file

@ -1,66 +1,66 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title> <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<asp:ContentPlaceHolder ID="MainContent" runat="server" /> <asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,34 +1,34 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<system.web> <system.web>
<httpHandlers> <httpHandlers>
<add path="*" verb="*" <add path="*" verb="*"
type="System.Web.HttpNotFoundHandler"/> type="System.Web.HttpNotFoundHandler"/>
</httpHandlers> </httpHandlers>
<!-- <!--
Enabling request validation in view pages would cause validation to occur Enabling request validation in view pages would cause validation to occur
after the input has already been processed by the controller. By default after the input has already been processed by the controller. By default
MVC performs request validation before a controller processes the input. MVC performs request validation before a controller processes the input.
To change this behavior apply the ValidateInputAttribute to a To change this behavior apply the ValidateInputAttribute to a
controller or action. controller or action.
--> -->
<pages <pages
validateRequest="false" validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls> <controls>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls> </controls>
</pages> </pages>
</system.web> </system.web>
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<handlers> <handlers>
<remove name="BlockViewHandler"/> <remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/> <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,205 +1,205 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
Note: As an alternative to hand editing this file you can use the Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio. the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in A full list of settings and comments can be found in
machine.config.comments usually located in machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config \Windows\Microsoft.Net\Framework\v2.x\Config
--> -->
<configuration> <configuration>
<configSections> <configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</configSections> </configSections>
<appSettings> <appSettings>
<!-- account configuration --> <!-- account configuration -->
<add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/> <add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/>
<add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/> <add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/>
<add key="AccountName" value="devstoreaccount1"/> <add key="AccountName" value="devstoreaccount1"/>
<add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/> <add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/>
<!-- provider configuration --> <!-- provider configuration -->
<!-- When using the local development table storage service only the default values given <!-- When using the local development table storage service only the default values given
below will work for the tables (Membership, Roles and Sessions) since these are the names below will work for the tables (Membership, Roles and Sessions) since these are the names
of the properties on the DataServiceContext class --> of the properties on the DataServiceContext class -->
<add key="DefaultMembershipTableName" value="Membership"/> <add key="DefaultMembershipTableName" value="Membership"/>
<add key="DefaultRoleTableName" value="Roles"/> <add key="DefaultRoleTableName" value="Roles"/>
<add key="DefaultSessionTableName" value="Sessions"/> <add key="DefaultSessionTableName" value="Sessions"/>
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/> <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings> </connectionStrings>
<system.web> <system.web>
<!-- <!--
Set compilation debug="true" to insert debugging Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this symbols into the compiled page. Because this
affects performance, set this value to true only affects performance, set this value to true only
during development. during development.
--> -->
<compilation debug="true"> <compilation debug="true">
<assemblies> <assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies> </assemblies>
</compilation> </compilation>
<!-- <!--
The <authentication> section enables configuration The <authentication> section enables configuration
of the security authentication mode used by of the security authentication mode used by
ASP.NET to identify an incoming user. ASP.NET to identify an incoming user.
--> -->
<authentication mode="Forms"> <authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880"/> <forms loginUrl="~/Account/LogOn" timeout="2880"/>
</authentication> </authentication>
<!-- Membership Provider Configuration --> <!-- Membership Provider Configuration -->
<membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20"> <membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageMembershipProvider" <add name="TableStorageMembershipProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider"
description="Membership provider using table storage" description="Membership provider using table storage"
applicationName="MVCAzureStore" applicationName="MVCAzureStore"
enablePasswordRetrieval="false" enablePasswordRetrieval="false"
enablePasswordReset="true" enablePasswordReset="true"
requiresQuestionAndAnswer="false" requiresQuestionAndAnswer="false"
minRequiredPasswordLength="1" minRequiredPasswordLength="1"
minRequiredNonalphanumericCharacters="0" minRequiredNonalphanumericCharacters="0"
requiresUniqueEmail="false" requiresUniqueEmail="false"
passwordFormat="Hashed"/> passwordFormat="Hashed"/>
</providers> </providers>
</membership> </membership>
<!-- RoleManager Provider Configuration --> <!-- RoleManager Provider Configuration -->
<roleManager enabled="true" <roleManager enabled="true"
defaultProvider="TableStorageRoleProvider" defaultProvider="TableStorageRoleProvider"
cacheRolesInCookie="true" cacheRolesInCookie="true"
cookieName=".ASPXROLES" cookieName=".ASPXROLES"
cookieTimeout="30" cookieTimeout="30"
cookiePath="/" cookiePath="/"
cookieRequireSSL="false" cookieRequireSSL="false"
cookieSlidingExpiration="true" cookieSlidingExpiration="true"
cookieProtection="All"> cookieProtection="All">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageRoleProvider" <add name="TableStorageRoleProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider"
description="Role provider using table storage" description="Role provider using table storage"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</roleManager> </roleManager>
<!-- SessionState Provider Configuration --> <!-- SessionState Provider Configuration -->
<sessionState mode="Custom" <sessionState mode="Custom"
customProvider="TableStorageSessionStateProvider"> customProvider="TableStorageSessionStateProvider">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageSessionStateProvider" <add name="TableStorageSessionStateProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</sessionState> </sessionState>
<profile> <profile>
<providers> <providers>
<clear/> <clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/> <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/>
</providers> </providers>
</profile> </profile>
<!-- <!--
The <customErrors> section enables configuration The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs of what to do if/when an unhandled error occurs
during the execution of a request. Specifically, during the execution of a request. Specifically,
it enables developers to configure html error pages it enables developers to configure html error pages
to be displayed in place of a error stack trace. to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" /> <error statusCode="404" redirect="FileNotFound.htm" />
</customErrors> </customErrors>
--> -->
<pages> <pages>
<controls> <controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</controls> </controls>
<namespaces> <namespaces>
<add namespace="System.Web.Mvc"/> <add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/> <add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/> <add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/> <add namespace="System.Web.Routing"/>
<add namespace="System.Linq"/> <add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/> <add namespace="System.Collections.Generic"/>
<add namespace="Helpers" /> <add namespace="Helpers" />
</namespaces> </namespaces>
</pages> </pages>
<httpHandlers> <httpHandlers>
<remove verb="*" path="*.asmx"/> <remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
<add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpHandlers> </httpHandlers>
<httpModules> <httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules> </httpModules>
</system.web> </system.web>
<system.codedom> <system.codedom>
<compilers> <compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="OptionInfer" value="true"/> <providerOption name="OptionInfer" value="true"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
</compilers> </compilers>
</system.codedom> </system.codedom>
<system.web.extensions/> <system.web.extensions/>
<!-- <!--
The system.webServer section is required for running ASP.NET AJAX under Internet The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS. Information Services 7.0. It is not necessary for previous version of IIS.
--> -->
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true"> <modules runAllManagedModulesForAllRequests="true">
<remove name="ScriptModule"/> <remove name="ScriptModule"/>
<remove name="UrlRoutingModule"/> <remove name="UrlRoutingModule"/>
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</modules> </modules>
<handlers> <handlers>
<remove name="WebServiceHandlerFactory-Integrated"/> <remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/> <remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/> <remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/> <remove name="ScriptResource"/>
<remove name="MvcHttpHandler"/> <remove name="MvcHttpHandler"/>
<remove name="UrlRoutingHandler"/> <remove name="UrlRoutingHandler"/>
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,204 +1,204 @@
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Global.asax G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Global.asax
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Web.config G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Web.config
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rd G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rd
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rdsc G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rdsc
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.csdef G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.csdef
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\ServiceConfiguration.cscfg G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\bin\Debug\ServiceConfiguration.cscfg
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\ResolveAssemblyReference.cache G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\ResolveAssemblyReference.cache
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.dll G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.dll
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.pdb G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.pdb
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.xml G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.xml
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-button.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-button.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-left.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-left.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-right.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-right.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-input.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-input.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster.jpg G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster.jpg
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster-tile.jpg G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster-tile.jpg
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bullet.png G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bullet.png
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\favicon.ico G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\favicon.ico
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\Site.css G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Content\Site.css
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Default.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Default.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Global.asax G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Global.asax
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.debug.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.js G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePassword.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePassword.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\LogOn.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\LogOn.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\Register.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\Register.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\About.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\About.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Checkout.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Checkout.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Index.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Index.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Error.aspx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Error.aspx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\LogOnUserControl.ascx G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Site.Master G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Site.Master
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Web.config G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Views\Web.config
G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Web.config G:\TrainingKits\WindowsAzurePlatformKit\Labs\BuildingMVCAppsWithWindowsAzure\Ex1-UsingAzureProviders\End\AzureStoreService\obj\Debug\MVCAzureStore\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Global.asax F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Global.asax
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rd F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rd
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rdsc F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.rdsc
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.csdef F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\ServiceDefinition.csdef
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\ServiceConfiguration.cscfg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\ServiceConfiguration.cscfg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\ResolveAssemblyReference.cache F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\ResolveAssemblyReference.cache
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\AspProviders.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\MVCAzureStore.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\StorageClient.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-button.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-button.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-left.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-left.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-right.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-column-right.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-input.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-input.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster-tile.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bg-poster-tile.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bullet.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\bullet.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\favicon.ico F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\images\favicon.ico
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\Site.css F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Content\Site.css
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Default.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Default.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Global.asax F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Global.asax
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePassword.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePassword.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\LogOn.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\LogOn.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\Register.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Account\Register.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\About.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\About.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Checkout.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Checkout.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Error.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Error.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\LogOnUserControl.ascx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Site.Master F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\Site.Master
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\template.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Debug\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\template.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.Asp.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.Asp.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.Asp.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.Asp.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBParser.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBScript.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBScript.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBScript.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Dlrsoft.VBScript.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Dynamic.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.Core.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\bin\Microsoft.Scripting.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Index.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Home\Index.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\template.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Debug\MVCAzureStore\Views\Shared\template.asp

File diff suppressed because one or more lines are too long

View file

@ -1,337 +1,337 @@
//!---------------------------------------------------------- //!----------------------------------------------------------
//! Copyright (C) Microsoft Corporation. All rights reserved. //! Copyright (C) Microsoft Corporation. All rights reserved.
//!---------------------------------------------------------- //!----------------------------------------------------------
//! MicrosoftMvcAjax.js //! MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc'); Type.registerNamespace('Sys.Mvc');
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxOptions // Sys.Mvc.AjaxOptions
Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; } Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.InsertionMode // Sys.Mvc.InsertionMode
Sys.Mvc.InsertionMode = function() { Sys.Mvc.InsertionMode = function() {
/// <field name="replace" type="Number" integer="true" static="true"> /// <field name="replace" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertBefore" type="Number" integer="true" static="true"> /// <field name="insertBefore" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertAfter" type="Number" integer="true" static="true"> /// <field name="insertAfter" type="Number" integer="true" static="true">
/// </field> /// </field>
}; };
Sys.Mvc.InsertionMode.prototype = { Sys.Mvc.InsertionMode.prototype = {
replace: 0, replace: 0,
insertBefore: 1, insertBefore: 1,
insertAfter: 2 insertAfter: 2
} }
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxContext // Sys.Mvc.AjaxContext
Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) { Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="updateTarget" type="Object" domElement="true"> /// <param name="updateTarget" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="loadingElement" type="Object" domElement="true"> /// <param name="loadingElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <field name="_insertionMode" type="Sys.Mvc.InsertionMode"> /// <field name="_insertionMode" type="Sys.Mvc.InsertionMode">
/// </field> /// </field>
/// <field name="_loadingElement" type="Object" domElement="true"> /// <field name="_loadingElement" type="Object" domElement="true">
/// </field> /// </field>
/// <field name="_response" type="Sys.Net.WebRequestExecutor"> /// <field name="_response" type="Sys.Net.WebRequestExecutor">
/// </field> /// </field>
/// <field name="_request" type="Sys.Net.WebRequest"> /// <field name="_request" type="Sys.Net.WebRequest">
/// </field> /// </field>
/// <field name="_updateTarget" type="Object" domElement="true"> /// <field name="_updateTarget" type="Object" domElement="true">
/// </field> /// </field>
this._request = request; this._request = request;
this._updateTarget = updateTarget; this._updateTarget = updateTarget;
this._loadingElement = loadingElement; this._loadingElement = loadingElement;
this._insertionMode = insertionMode; this._insertionMode = insertionMode;
} }
Sys.Mvc.AjaxContext.prototype = { Sys.Mvc.AjaxContext.prototype = {
_insertionMode: 0, _insertionMode: 0,
_loadingElement: null, _loadingElement: null,
_response: null, _response: null,
_request: null, _request: null,
_updateTarget: null, _updateTarget: null,
get_data: function Sys_Mvc_AjaxContext$get_data() { get_data: function Sys_Mvc_AjaxContext$get_data() {
/// <value type="String"></value> /// <value type="String"></value>
if (this._response) { if (this._response) {
return this._response.get_responseData(); return this._response.get_responseData();
} }
else { else {
return null; return null;
} }
}, },
get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() { get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() {
/// <value type="Sys.Mvc.InsertionMode"></value> /// <value type="Sys.Mvc.InsertionMode"></value>
return this._insertionMode; return this._insertionMode;
}, },
get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() { get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._loadingElement; return this._loadingElement;
}, },
get_response: function Sys_Mvc_AjaxContext$get_response() { get_response: function Sys_Mvc_AjaxContext$get_response() {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
return this._response; return this._response;
}, },
set_response: function Sys_Mvc_AjaxContext$set_response(value) { set_response: function Sys_Mvc_AjaxContext$set_response(value) {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
this._response = value; this._response = value;
return value; return value;
}, },
get_request: function Sys_Mvc_AjaxContext$get_request() { get_request: function Sys_Mvc_AjaxContext$get_request() {
/// <value type="Sys.Net.WebRequest"></value> /// <value type="Sys.Net.WebRequest"></value>
return this._request; return this._request;
}, },
get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() { get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._updateTarget; return this._updateTarget;
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncHyperlink // Sys.Mvc.AsyncHyperlink
Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() { Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() {
} }
Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) { Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) {
/// <param name="anchor" type="Object" domElement="true"> /// <param name="anchor" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.MvcHelpers // Sys.Mvc.MvcHelpers
Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() { Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() {
} }
Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) { Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <returns type="String"></returns> /// <returns type="String"></returns>
var formElements = form.elements; var formElements = form.elements;
var formBody = new Sys.StringBuilder(); var formBody = new Sys.StringBuilder();
var count = formElements.length; var count = formElements.length;
for (var i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
var element = formElements[i]; var element = formElements[i];
var name = element.name; var name = element.name;
if (!name || !name.length) { if (!name || !name.length) {
continue; continue;
} }
var tagName = element.tagName.toUpperCase(); var tagName = element.tagName.toUpperCase();
if (tagName === 'INPUT') { if (tagName === 'INPUT') {
var inputElement = element; var inputElement = element;
var type = inputElement.type; var type = inputElement.type;
if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) { if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(inputElement.value)); formBody.append(encodeURIComponent(inputElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
else if (tagName === 'SELECT') { else if (tagName === 'SELECT') {
var selectElement = element; var selectElement = element;
var optionCount = selectElement.options.length; var optionCount = selectElement.options.length;
for (var j = 0; j < optionCount; j++) { for (var j = 0; j < optionCount; j++) {
var optionElement = selectElement.options[j]; var optionElement = selectElement.options[j];
if (optionElement.selected) { if (optionElement.selected) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(optionElement.value)); formBody.append(encodeURIComponent(optionElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
} }
else if (tagName === 'TEXTAREA') { else if (tagName === 'TEXTAREA') {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent((element.value))); formBody.append(encodeURIComponent((element.value)));
formBody.append('&'); formBody.append('&');
} }
} }
return formBody.toString(); return formBody.toString();
} }
Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) { Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) {
/// <param name="url" type="String"> /// <param name="url" type="String">
/// </param> /// </param>
/// <param name="verb" type="String"> /// <param name="verb" type="String">
/// </param> /// </param>
/// <param name="body" type="String"> /// <param name="body" type="String">
/// </param> /// </param>
/// <param name="triggerElement" type="Object" domElement="true"> /// <param name="triggerElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
if (ajaxOptions.confirm) { if (ajaxOptions.confirm) {
if (!confirm(ajaxOptions.confirm)) { if (!confirm(ajaxOptions.confirm)) {
return; return;
} }
} }
if (ajaxOptions.url) { if (ajaxOptions.url) {
url = ajaxOptions.url; url = ajaxOptions.url;
} }
if (ajaxOptions.httpMethod) { if (ajaxOptions.httpMethod) {
verb = ajaxOptions.httpMethod; verb = ajaxOptions.httpMethod;
} }
if (body.length > 0 && !body.endsWith('&')) { if (body.length > 0 && !body.endsWith('&')) {
body += '&'; body += '&';
} }
body += 'X-Requested-With=XMLHttpRequest'; body += 'X-Requested-With=XMLHttpRequest';
var requestBody = ''; var requestBody = '';
if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') { if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') {
if (url.indexOf('?') > -1) { if (url.indexOf('?') > -1) {
if (!url.endsWith('&')) { if (!url.endsWith('&')) {
url += '&'; url += '&';
} }
url += body; url += body;
} }
else { else {
url += '?'; url += '?';
url += body; url += body;
} }
} }
else { else {
requestBody = body; requestBody = body;
} }
var request = new Sys.Net.WebRequest(); var request = new Sys.Net.WebRequest();
request.set_url(url); request.set_url(url);
request.set_httpVerb(verb); request.set_httpVerb(verb);
request.set_body(requestBody); request.set_body(requestBody);
if (verb.toUpperCase() === 'PUT') { if (verb.toUpperCase() === 'PUT') {
request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;';
} }
request.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; request.get_headers()['X-Requested-With'] = 'XMLHttpRequest';
var updateElement = null; var updateElement = null;
if (ajaxOptions.updateTargetId) { if (ajaxOptions.updateTargetId) {
updateElement = $get(ajaxOptions.updateTargetId); updateElement = $get(ajaxOptions.updateTargetId);
} }
var loadingElement = null; var loadingElement = null;
if (ajaxOptions.loadingElementId) { if (ajaxOptions.loadingElementId) {
loadingElement = $get(ajaxOptions.loadingElementId); loadingElement = $get(ajaxOptions.loadingElementId);
} }
var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode); var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode);
var continueRequest = true; var continueRequest = true;
if (ajaxOptions.onBegin) { if (ajaxOptions.onBegin) {
continueRequest = ajaxOptions.onBegin(ajaxContext) !== false; continueRequest = ajaxOptions.onBegin(ajaxContext) !== false;
} }
if (loadingElement) { if (loadingElement) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true);
} }
if (continueRequest) { if (continueRequest) {
request.add_completed(Function.createDelegate(null, function(executor) { request.add_completed(Function.createDelegate(null, function(executor) {
Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext); Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext);
})); }));
request.invoke(); request.invoke();
} }
} }
Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) { Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
/// <param name="ajaxContext" type="Sys.Mvc.AjaxContext"> /// <param name="ajaxContext" type="Sys.Mvc.AjaxContext">
/// </param> /// </param>
ajaxContext.set_response(request.get_executor()); ajaxContext.set_response(request.get_executor());
if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) { if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) {
return; return;
} }
var statusCode = ajaxContext.get_response().get_statusCode(); var statusCode = ajaxContext.get_response().get_statusCode();
if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) { if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) {
if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) { if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) {
var contentType = ajaxContext.get_response().getResponseHeader('Content-Type'); var contentType = ajaxContext.get_response().getResponseHeader('Content-Type');
if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) { if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) {
eval(ajaxContext.get_data()); eval(ajaxContext.get_data());
} }
else { else {
Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data()); Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data());
} }
} }
if (ajaxOptions.onSuccess) { if (ajaxOptions.onSuccess) {
ajaxOptions.onSuccess(ajaxContext); ajaxOptions.onSuccess(ajaxContext);
} }
} }
else { else {
if (ajaxOptions.onFailure) { if (ajaxOptions.onFailure) {
ajaxOptions.onFailure(ajaxContext); ajaxOptions.onFailure(ajaxContext);
} }
} }
if (ajaxContext.get_loadingElement()) { if (ajaxContext.get_loadingElement()) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false);
} }
} }
Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) { Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) {
/// <param name="target" type="Object" domElement="true"> /// <param name="target" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <param name="content" type="String"> /// <param name="content" type="String">
/// </param> /// </param>
if (target) { if (target) {
switch (insertionMode) { switch (insertionMode) {
case Sys.Mvc.InsertionMode.replace: case Sys.Mvc.InsertionMode.replace:
target.innerHTML = content; target.innerHTML = content;
break; break;
case Sys.Mvc.InsertionMode.insertBefore: case Sys.Mvc.InsertionMode.insertBefore:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = content + target.innerHTML.trimStart(); target.innerHTML = content + target.innerHTML.trimStart();
} }
break; break;
case Sys.Mvc.InsertionMode.insertAfter: case Sys.Mvc.InsertionMode.insertAfter:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = target.innerHTML.trimEnd() + content; target.innerHTML = target.innerHTML.trimEnd() + content;
} }
break; break;
} }
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncForm // Sys.Mvc.AsyncForm
Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() { Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() {
} }
Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) { Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
var body = Sys.Mvc.MvcHelpers._serializeForm(form); var body = Sys.Mvc.MvcHelpers._serializeForm(form);
Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions);
} }
Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext');
Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink');
Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers');
Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm');
// ---- Do not remove this footer ---- // ---- Do not remove this footer ----
// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) // Generated using Script# v0.5.0.0 (http://projects.nikhilk.net)
// ----------------------------------- // -----------------------------------

View file

@ -2,7 +2,7 @@
// Copyright (C) Microsoft Corporation. All rights reserved. // Copyright (C) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------- //----------------------------------------------------------
// MicrosoftMvcAjax.js // MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};} Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};}
Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2} Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2}
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;} Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;}

File diff suppressed because one or more lines are too long

View file

@ -1,81 +1,81 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title>Azure Store Products</title> <title>Azure Store Products</title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<%if context.User.IsInRole("Home") then %> <%if context.User.IsInRole("Home") then %>
<h1><span class="product-category">Home</span> Products</h1> <h1><span class="product-category">Home</span> Products</h1>
<% else %> <% else %>
<h1><span class="product-category">Enterprise</span> Products</h1> <h1><span class="product-category">Enterprise</span> Products</h1>
<% end if %> <% end if %>
<label for="items">Select a product from the list:</label> <label for="items">Select a product from the list:</label>
<% dim myForm <% dim myForm
dim product dim product
myForm = Html.BeginForm("Add", "Home") %> myForm = Html.BeginForm("Add", "Home") %>
<select name="selectedItem" class="product-list" id="items" size="4"> <select name="selectedItem" class="product-list" id="items" size="4">
<% for each product in ViewData.Model %> <% for each product in ViewData.Model %>
<option value="<%=product%>"><%=product%></option> <option value="<%=product%>"><%=product%></option>
<% next %> <% next %>
</select> </select>
<a href="javascript:document.forms[0].submit();">Add item to cart</a> <a href="javascript:document.forms[0].submit();">Add item to cart</a>
<% myForm.dispose() %> <% myForm.dispose() %>
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,14 +1,14 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<% <%
if (Request.IsAuthenticated) { if (Request.IsAuthenticated) {
%> %>
Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>! Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>!
[ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ] [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ]
<% <%
} }
else { else {
%> %>
[ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ] [ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ]
<% <%
} }
%> %>

View file

@ -1,66 +1,66 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title> <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<asp:ContentPlaceHolder ID="MainContent" runat="server" /> <asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,34 +1,34 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<system.web> <system.web>
<httpHandlers> <httpHandlers>
<add path="*" verb="*" <add path="*" verb="*"
type="System.Web.HttpNotFoundHandler"/> type="System.Web.HttpNotFoundHandler"/>
</httpHandlers> </httpHandlers>
<!-- <!--
Enabling request validation in view pages would cause validation to occur Enabling request validation in view pages would cause validation to occur
after the input has already been processed by the controller. By default after the input has already been processed by the controller. By default
MVC performs request validation before a controller processes the input. MVC performs request validation before a controller processes the input.
To change this behavior apply the ValidateInputAttribute to a To change this behavior apply the ValidateInputAttribute to a
controller or action. controller or action.
--> -->
<pages <pages
validateRequest="false" validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls> <controls>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls> </controls>
</pages> </pages>
</system.web> </system.web>
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<handlers> <handlers>
<remove name="BlockViewHandler"/> <remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/> <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,205 +1,205 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
Note: As an alternative to hand editing this file you can use the Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio. the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in A full list of settings and comments can be found in
machine.config.comments usually located in machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config \Windows\Microsoft.Net\Framework\v2.x\Config
--> -->
<configuration> <configuration>
<configSections> <configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</configSections> </configSections>
<appSettings> <appSettings>
<!-- account configuration --> <!-- account configuration -->
<add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/> <add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/>
<add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/> <add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/>
<add key="AccountName" value="devstoreaccount1"/> <add key="AccountName" value="devstoreaccount1"/>
<add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/> <add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/>
<!-- provider configuration --> <!-- provider configuration -->
<!-- When using the local development table storage service only the default values given <!-- When using the local development table storage service only the default values given
below will work for the tables (Membership, Roles and Sessions) since these are the names below will work for the tables (Membership, Roles and Sessions) since these are the names
of the properties on the DataServiceContext class --> of the properties on the DataServiceContext class -->
<add key="DefaultMembershipTableName" value="Membership"/> <add key="DefaultMembershipTableName" value="Membership"/>
<add key="DefaultRoleTableName" value="Roles"/> <add key="DefaultRoleTableName" value="Roles"/>
<add key="DefaultSessionTableName" value="Sessions"/> <add key="DefaultSessionTableName" value="Sessions"/>
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/> <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings> </connectionStrings>
<system.web> <system.web>
<!-- <!--
Set compilation debug="true" to insert debugging Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this symbols into the compiled page. Because this
affects performance, set this value to true only affects performance, set this value to true only
during development. during development.
--> -->
<compilation debug="true"> <compilation debug="true">
<assemblies> <assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies> </assemblies>
</compilation> </compilation>
<!-- <!--
The <authentication> section enables configuration The <authentication> section enables configuration
of the security authentication mode used by of the security authentication mode used by
ASP.NET to identify an incoming user. ASP.NET to identify an incoming user.
--> -->
<authentication mode="Forms"> <authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880"/> <forms loginUrl="~/Account/LogOn" timeout="2880"/>
</authentication> </authentication>
<!-- Membership Provider Configuration --> <!-- Membership Provider Configuration -->
<membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20"> <membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageMembershipProvider" <add name="TableStorageMembershipProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider"
description="Membership provider using table storage" description="Membership provider using table storage"
applicationName="MVCAzureStore" applicationName="MVCAzureStore"
enablePasswordRetrieval="false" enablePasswordRetrieval="false"
enablePasswordReset="true" enablePasswordReset="true"
requiresQuestionAndAnswer="false" requiresQuestionAndAnswer="false"
minRequiredPasswordLength="1" minRequiredPasswordLength="1"
minRequiredNonalphanumericCharacters="0" minRequiredNonalphanumericCharacters="0"
requiresUniqueEmail="false" requiresUniqueEmail="false"
passwordFormat="Hashed"/> passwordFormat="Hashed"/>
</providers> </providers>
</membership> </membership>
<!-- RoleManager Provider Configuration --> <!-- RoleManager Provider Configuration -->
<roleManager enabled="true" <roleManager enabled="true"
defaultProvider="TableStorageRoleProvider" defaultProvider="TableStorageRoleProvider"
cacheRolesInCookie="true" cacheRolesInCookie="true"
cookieName=".ASPXROLES" cookieName=".ASPXROLES"
cookieTimeout="30" cookieTimeout="30"
cookiePath="/" cookiePath="/"
cookieRequireSSL="false" cookieRequireSSL="false"
cookieSlidingExpiration="true" cookieSlidingExpiration="true"
cookieProtection="All"> cookieProtection="All">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageRoleProvider" <add name="TableStorageRoleProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider"
description="Role provider using table storage" description="Role provider using table storage"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</roleManager> </roleManager>
<!-- SessionState Provider Configuration --> <!-- SessionState Provider Configuration -->
<sessionState mode="Custom" <sessionState mode="Custom"
customProvider="TableStorageSessionStateProvider"> customProvider="TableStorageSessionStateProvider">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageSessionStateProvider" <add name="TableStorageSessionStateProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</sessionState> </sessionState>
<profile> <profile>
<providers> <providers>
<clear/> <clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/> <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/>
</providers> </providers>
</profile> </profile>
<!-- <!--
The <customErrors> section enables configuration The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs of what to do if/when an unhandled error occurs
during the execution of a request. Specifically, during the execution of a request. Specifically,
it enables developers to configure html error pages it enables developers to configure html error pages
to be displayed in place of a error stack trace. to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" /> <error statusCode="404" redirect="FileNotFound.htm" />
</customErrors> </customErrors>
--> -->
<pages> <pages>
<controls> <controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</controls> </controls>
<namespaces> <namespaces>
<add namespace="System.Web.Mvc"/> <add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/> <add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/> <add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/> <add namespace="System.Web.Routing"/>
<add namespace="System.Linq"/> <add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/> <add namespace="System.Collections.Generic"/>
<add namespace="Helpers" /> <add namespace="Helpers" />
</namespaces> </namespaces>
</pages> </pages>
<httpHandlers> <httpHandlers>
<remove verb="*" path="*.asmx"/> <remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
<add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpHandlers> </httpHandlers>
<httpModules> <httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules> </httpModules>
</system.web> </system.web>
<system.codedom> <system.codedom>
<compilers> <compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="OptionInfer" value="true"/> <providerOption name="OptionInfer" value="true"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
</compilers> </compilers>
</system.codedom> </system.codedom>
<system.web.extensions/> <system.web.extensions/>
<!-- <!--
The system.webServer section is required for running ASP.NET AJAX under Internet The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS. Information Services 7.0. It is not necessary for previous version of IIS.
--> -->
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true"> <modules runAllManagedModulesForAllRequests="true">
<remove name="ScriptModule"/> <remove name="ScriptModule"/>
<remove name="UrlRoutingModule"/> <remove name="UrlRoutingModule"/>
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</modules> </modules>
<handlers> <handlers>
<remove name="WebServiceHandlerFactory-Integrated"/> <remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/> <remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/> <remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/> <remove name="ScriptResource"/>
<remove name="MvcHttpHandler"/> <remove name="MvcHttpHandler"/>
<remove name="UrlRoutingHandler"/> <remove name="UrlRoutingHandler"/>
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,122 +1,122 @@
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Default.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Global.asax F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Global.asax
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\AspProviders.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.Asp.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBParser.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Dlrsoft.VBScript.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Dynamic.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.Core.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\Microsoft.Scripting.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\MVCAzureStore.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\StorageClient.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\Site.css
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\jquery-1.3.2.min.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-button.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-left.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-column-right.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-input.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster-tile.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bg-poster.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\bullet.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Content\images\favicon.ico
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePassword.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\LogOn.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Account\Register.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\About.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Checkout.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Home\Index.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Error.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\Site.Master
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\template.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\Views\Shared\template.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\roles\MVCAzureStore\bin\ucruntime.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.rd F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.rd
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.rdsc F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.rdsc
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.csdef F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\AzureStoreService.csx\ServiceDefinition.csdef
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\ServiceConfiguration.cscfg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\bin\Release\ServiceConfiguration.cscfg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\ResolveAssemblyReference.cache F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\ResolveAssemblyReference.cache
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\AspProviders.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\AspProviders.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\AspProviders.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\AspProviders.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.Asp.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.Asp.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.Asp.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.Asp.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBParser.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBScript.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBScript.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBScript.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Dlrsoft.VBScript.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Interop.ASPTypeLibrary.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Dynamic.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.Core.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.ExtensionAttribute.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\Microsoft.Scripting.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\MVCAzureStore.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\MVCAzureStore.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\MVCAzureStore.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\MVCAzureStore.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.dll F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.dll
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.pdb F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.pdb
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.xml F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\bin\StorageClient.xml
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-button.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-button.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-column-left.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-column-left.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-column-right.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-column-right.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-input.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-input.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-poster.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-poster.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-poster-tile.jpg F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bg-poster-tile.jpg
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bullet.png F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\bullet.png
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\favicon.ico F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\images\favicon.ico
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\Site.css F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Content\Site.css
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Default.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Default.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Global.asax F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Global.asax
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.min.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.min.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2.min-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\jquery-1.3.2-vsdoc.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftMvcAjax.debug.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftMvcAjax.js F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Scripts\MicrosoftMvcAjax.js
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\ChangePassword.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\ChangePassword.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\ChangePasswordSuccess.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\LogOn.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\LogOn.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\Register.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Account\Register.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\About.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\About.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\Checkout.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\Checkout.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\Index.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Home\Index.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\Error.aspx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\Error.aspx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\LogOnUserControl.ascx F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\LogOnUserControl.ascx
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\Site.Master F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\Site.Master
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\template.asp F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Shared\template.asp
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Views\Web.config
F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Web.config F:\projects\dotnet35\VBParser80\AzureStoreAsp\AzureStoreService\obj\Release\MVCAzureStore\Web.config

File diff suppressed because one or more lines are too long

View file

@ -1,337 +1,337 @@
//!---------------------------------------------------------- //!----------------------------------------------------------
//! Copyright (C) Microsoft Corporation. All rights reserved. //! Copyright (C) Microsoft Corporation. All rights reserved.
//!---------------------------------------------------------- //!----------------------------------------------------------
//! MicrosoftMvcAjax.js //! MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc'); Type.registerNamespace('Sys.Mvc');
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxOptions // Sys.Mvc.AjaxOptions
Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; } Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.InsertionMode // Sys.Mvc.InsertionMode
Sys.Mvc.InsertionMode = function() { Sys.Mvc.InsertionMode = function() {
/// <field name="replace" type="Number" integer="true" static="true"> /// <field name="replace" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertBefore" type="Number" integer="true" static="true"> /// <field name="insertBefore" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertAfter" type="Number" integer="true" static="true"> /// <field name="insertAfter" type="Number" integer="true" static="true">
/// </field> /// </field>
}; };
Sys.Mvc.InsertionMode.prototype = { Sys.Mvc.InsertionMode.prototype = {
replace: 0, replace: 0,
insertBefore: 1, insertBefore: 1,
insertAfter: 2 insertAfter: 2
} }
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxContext // Sys.Mvc.AjaxContext
Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) { Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="updateTarget" type="Object" domElement="true"> /// <param name="updateTarget" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="loadingElement" type="Object" domElement="true"> /// <param name="loadingElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <field name="_insertionMode" type="Sys.Mvc.InsertionMode"> /// <field name="_insertionMode" type="Sys.Mvc.InsertionMode">
/// </field> /// </field>
/// <field name="_loadingElement" type="Object" domElement="true"> /// <field name="_loadingElement" type="Object" domElement="true">
/// </field> /// </field>
/// <field name="_response" type="Sys.Net.WebRequestExecutor"> /// <field name="_response" type="Sys.Net.WebRequestExecutor">
/// </field> /// </field>
/// <field name="_request" type="Sys.Net.WebRequest"> /// <field name="_request" type="Sys.Net.WebRequest">
/// </field> /// </field>
/// <field name="_updateTarget" type="Object" domElement="true"> /// <field name="_updateTarget" type="Object" domElement="true">
/// </field> /// </field>
this._request = request; this._request = request;
this._updateTarget = updateTarget; this._updateTarget = updateTarget;
this._loadingElement = loadingElement; this._loadingElement = loadingElement;
this._insertionMode = insertionMode; this._insertionMode = insertionMode;
} }
Sys.Mvc.AjaxContext.prototype = { Sys.Mvc.AjaxContext.prototype = {
_insertionMode: 0, _insertionMode: 0,
_loadingElement: null, _loadingElement: null,
_response: null, _response: null,
_request: null, _request: null,
_updateTarget: null, _updateTarget: null,
get_data: function Sys_Mvc_AjaxContext$get_data() { get_data: function Sys_Mvc_AjaxContext$get_data() {
/// <value type="String"></value> /// <value type="String"></value>
if (this._response) { if (this._response) {
return this._response.get_responseData(); return this._response.get_responseData();
} }
else { else {
return null; return null;
} }
}, },
get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() { get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() {
/// <value type="Sys.Mvc.InsertionMode"></value> /// <value type="Sys.Mvc.InsertionMode"></value>
return this._insertionMode; return this._insertionMode;
}, },
get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() { get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._loadingElement; return this._loadingElement;
}, },
get_response: function Sys_Mvc_AjaxContext$get_response() { get_response: function Sys_Mvc_AjaxContext$get_response() {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
return this._response; return this._response;
}, },
set_response: function Sys_Mvc_AjaxContext$set_response(value) { set_response: function Sys_Mvc_AjaxContext$set_response(value) {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
this._response = value; this._response = value;
return value; return value;
}, },
get_request: function Sys_Mvc_AjaxContext$get_request() { get_request: function Sys_Mvc_AjaxContext$get_request() {
/// <value type="Sys.Net.WebRequest"></value> /// <value type="Sys.Net.WebRequest"></value>
return this._request; return this._request;
}, },
get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() { get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._updateTarget; return this._updateTarget;
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncHyperlink // Sys.Mvc.AsyncHyperlink
Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() { Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() {
} }
Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) { Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) {
/// <param name="anchor" type="Object" domElement="true"> /// <param name="anchor" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.MvcHelpers // Sys.Mvc.MvcHelpers
Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() { Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() {
} }
Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) { Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <returns type="String"></returns> /// <returns type="String"></returns>
var formElements = form.elements; var formElements = form.elements;
var formBody = new Sys.StringBuilder(); var formBody = new Sys.StringBuilder();
var count = formElements.length; var count = formElements.length;
for (var i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
var element = formElements[i]; var element = formElements[i];
var name = element.name; var name = element.name;
if (!name || !name.length) { if (!name || !name.length) {
continue; continue;
} }
var tagName = element.tagName.toUpperCase(); var tagName = element.tagName.toUpperCase();
if (tagName === 'INPUT') { if (tagName === 'INPUT') {
var inputElement = element; var inputElement = element;
var type = inputElement.type; var type = inputElement.type;
if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) { if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(inputElement.value)); formBody.append(encodeURIComponent(inputElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
else if (tagName === 'SELECT') { else if (tagName === 'SELECT') {
var selectElement = element; var selectElement = element;
var optionCount = selectElement.options.length; var optionCount = selectElement.options.length;
for (var j = 0; j < optionCount; j++) { for (var j = 0; j < optionCount; j++) {
var optionElement = selectElement.options[j]; var optionElement = selectElement.options[j];
if (optionElement.selected) { if (optionElement.selected) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(optionElement.value)); formBody.append(encodeURIComponent(optionElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
} }
else if (tagName === 'TEXTAREA') { else if (tagName === 'TEXTAREA') {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent((element.value))); formBody.append(encodeURIComponent((element.value)));
formBody.append('&'); formBody.append('&');
} }
} }
return formBody.toString(); return formBody.toString();
} }
Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) { Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) {
/// <param name="url" type="String"> /// <param name="url" type="String">
/// </param> /// </param>
/// <param name="verb" type="String"> /// <param name="verb" type="String">
/// </param> /// </param>
/// <param name="body" type="String"> /// <param name="body" type="String">
/// </param> /// </param>
/// <param name="triggerElement" type="Object" domElement="true"> /// <param name="triggerElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
if (ajaxOptions.confirm) { if (ajaxOptions.confirm) {
if (!confirm(ajaxOptions.confirm)) { if (!confirm(ajaxOptions.confirm)) {
return; return;
} }
} }
if (ajaxOptions.url) { if (ajaxOptions.url) {
url = ajaxOptions.url; url = ajaxOptions.url;
} }
if (ajaxOptions.httpMethod) { if (ajaxOptions.httpMethod) {
verb = ajaxOptions.httpMethod; verb = ajaxOptions.httpMethod;
} }
if (body.length > 0 && !body.endsWith('&')) { if (body.length > 0 && !body.endsWith('&')) {
body += '&'; body += '&';
} }
body += 'X-Requested-With=XMLHttpRequest'; body += 'X-Requested-With=XMLHttpRequest';
var requestBody = ''; var requestBody = '';
if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') { if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') {
if (url.indexOf('?') > -1) { if (url.indexOf('?') > -1) {
if (!url.endsWith('&')) { if (!url.endsWith('&')) {
url += '&'; url += '&';
} }
url += body; url += body;
} }
else { else {
url += '?'; url += '?';
url += body; url += body;
} }
} }
else { else {
requestBody = body; requestBody = body;
} }
var request = new Sys.Net.WebRequest(); var request = new Sys.Net.WebRequest();
request.set_url(url); request.set_url(url);
request.set_httpVerb(verb); request.set_httpVerb(verb);
request.set_body(requestBody); request.set_body(requestBody);
if (verb.toUpperCase() === 'PUT') { if (verb.toUpperCase() === 'PUT') {
request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;';
} }
request.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; request.get_headers()['X-Requested-With'] = 'XMLHttpRequest';
var updateElement = null; var updateElement = null;
if (ajaxOptions.updateTargetId) { if (ajaxOptions.updateTargetId) {
updateElement = $get(ajaxOptions.updateTargetId); updateElement = $get(ajaxOptions.updateTargetId);
} }
var loadingElement = null; var loadingElement = null;
if (ajaxOptions.loadingElementId) { if (ajaxOptions.loadingElementId) {
loadingElement = $get(ajaxOptions.loadingElementId); loadingElement = $get(ajaxOptions.loadingElementId);
} }
var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode); var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode);
var continueRequest = true; var continueRequest = true;
if (ajaxOptions.onBegin) { if (ajaxOptions.onBegin) {
continueRequest = ajaxOptions.onBegin(ajaxContext) !== false; continueRequest = ajaxOptions.onBegin(ajaxContext) !== false;
} }
if (loadingElement) { if (loadingElement) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true);
} }
if (continueRequest) { if (continueRequest) {
request.add_completed(Function.createDelegate(null, function(executor) { request.add_completed(Function.createDelegate(null, function(executor) {
Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext); Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext);
})); }));
request.invoke(); request.invoke();
} }
} }
Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) { Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
/// <param name="ajaxContext" type="Sys.Mvc.AjaxContext"> /// <param name="ajaxContext" type="Sys.Mvc.AjaxContext">
/// </param> /// </param>
ajaxContext.set_response(request.get_executor()); ajaxContext.set_response(request.get_executor());
if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) { if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) {
return; return;
} }
var statusCode = ajaxContext.get_response().get_statusCode(); var statusCode = ajaxContext.get_response().get_statusCode();
if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) { if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) {
if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) { if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) {
var contentType = ajaxContext.get_response().getResponseHeader('Content-Type'); var contentType = ajaxContext.get_response().getResponseHeader('Content-Type');
if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) { if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) {
eval(ajaxContext.get_data()); eval(ajaxContext.get_data());
} }
else { else {
Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data()); Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data());
} }
} }
if (ajaxOptions.onSuccess) { if (ajaxOptions.onSuccess) {
ajaxOptions.onSuccess(ajaxContext); ajaxOptions.onSuccess(ajaxContext);
} }
} }
else { else {
if (ajaxOptions.onFailure) { if (ajaxOptions.onFailure) {
ajaxOptions.onFailure(ajaxContext); ajaxOptions.onFailure(ajaxContext);
} }
} }
if (ajaxContext.get_loadingElement()) { if (ajaxContext.get_loadingElement()) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false);
} }
} }
Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) { Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) {
/// <param name="target" type="Object" domElement="true"> /// <param name="target" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <param name="content" type="String"> /// <param name="content" type="String">
/// </param> /// </param>
if (target) { if (target) {
switch (insertionMode) { switch (insertionMode) {
case Sys.Mvc.InsertionMode.replace: case Sys.Mvc.InsertionMode.replace:
target.innerHTML = content; target.innerHTML = content;
break; break;
case Sys.Mvc.InsertionMode.insertBefore: case Sys.Mvc.InsertionMode.insertBefore:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = content + target.innerHTML.trimStart(); target.innerHTML = content + target.innerHTML.trimStart();
} }
break; break;
case Sys.Mvc.InsertionMode.insertAfter: case Sys.Mvc.InsertionMode.insertAfter:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = target.innerHTML.trimEnd() + content; target.innerHTML = target.innerHTML.trimEnd() + content;
} }
break; break;
} }
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncForm // Sys.Mvc.AsyncForm
Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() { Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() {
} }
Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) { Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
var body = Sys.Mvc.MvcHelpers._serializeForm(form); var body = Sys.Mvc.MvcHelpers._serializeForm(form);
Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions);
} }
Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext');
Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink');
Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers');
Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm');
// ---- Do not remove this footer ---- // ---- Do not remove this footer ----
// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) // Generated using Script# v0.5.0.0 (http://projects.nikhilk.net)
// ----------------------------------- // -----------------------------------

View file

@ -2,7 +2,7 @@
// Copyright (C) Microsoft Corporation. All rights reserved. // Copyright (C) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------- //----------------------------------------------------------
// MicrosoftMvcAjax.js // MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};} Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};}
Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2} Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2}
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;} Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;}

File diff suppressed because one or more lines are too long

View file

@ -1,81 +1,81 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title>Azure Store Products</title> <title>Azure Store Products</title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(context.User.Identity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<%if context.User.IsInRole("Home") then %> <%if context.User.IsInRole("Home") then %>
<h1><span class="product-category">Home</span> Products</h1> <h1><span class="product-category">Home</span> Products</h1>
<% else %> <% else %>
<h1><span class="product-category">Enterprise</span> Products</h1> <h1><span class="product-category">Enterprise</span> Products</h1>
<% end if %> <% end if %>
<label for="items">Select a product from the list:</label> <label for="items">Select a product from the list:</label>
<% <%
dim product dim product
dim myForm = Html.BeginForm("Add", "Home") %> dim myForm = Html.BeginForm("Add", "Home") %>
<select name="selectedItem" class="product-list" id="items" size="4"> <select name="selectedItem" class="product-list" id="items" size="4">
<% for each product in ViewData.Model %> <% for each product in ViewData.Model %>
<option value="<%=product%>"><%=product%></option> <option value="<%=product%>"><%=product%></option>
<% next %> <% next %>
</select> </select>
<a href="javascript:document.forms[0].submit();">Add item to cart</a> <a href="javascript:document.forms[0].submit();">Add item to cart</a>
<% myForm.dispose() %> <% myForm.dispose() %>
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,14 +1,14 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<% <%
if (Request.IsAuthenticated) { if (Request.IsAuthenticated) {
%> %>
Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>! Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>!
[ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ] [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ]
<% <%
} }
else { else {
%> %>
[ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ] [ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ]
<% <%
} }
%> %>

View file

@ -1,66 +1,66 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <html xmlns="http://www.w3.org/1999/xhtml" >
<head> <head>
<title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title> <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
<link rel="shortcut icon" href="../../Content/images/favicon.ico" /> <link rel="shortcut icon" href="../../Content/images/favicon.ico" />
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head> </head>
<body> <body>
<div class="header-container"> <div class="header-container">
<div class="nav-login"> <div class="nav-login">
<ul> <ul>
<%if Request.IsAuthenticated then %> <%if Request.IsAuthenticated then %>
<li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp; <li class="first">User:<span class="identity"><%=Html.Encode(Request.LogonUserIdentity.Name)%></span></li>&nbsp;
<li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li> <li><%= Html.ActionLink("Logout", "LogOff", "Account") %></li>
<% else %> <% else %>
<li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li> <li class="first"><%= Html.ActionLink("Register", "Register", "Account") %></li>
<%end if %> <%end if %>
</ul> </ul>
</div> </div>
<div class="logo">Azure Store</div> <div class="logo">Azure Store</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="poster-container-no-image"> <div class="poster-container-no-image">
<div class="poster-inner"> </div> <div class="poster-inner"> </div>
</div> </div>
<div class="nav-main"> <div class="nav-main">
<ul> <ul>
<% if Html.IsCurrentAction("Index", "Home") then %> <% if Html.IsCurrentAction("Index", "Home") then %>
<li class="first active"> <li class="first active">
<% else %> <% else %>
<li class="first"> <li class="first">
<% end if %> <% end if %>
<%=Html.ActionLink("Products", "Index", "Home")%> <%=Html.ActionLink("Products", "Index", "Home")%>
</li> </li>
<% if Html.IsCurrentAction("Checkout", "Home") then %> <% if Html.IsCurrentAction("Checkout", "Home") then %>
<li class="active"> <li class="active">
<% else %> <% else %>
<li class=""> <li class="">
<% end if %> <% end if %>
<%=Html.ActionLink("Checkout", "Checkout", "Home")%> <%=Html.ActionLink("Checkout", "Checkout", "Home")%>
</li> </li>
</ul> </ul>
</div> </div>
<div class="content-container"> <div class="content-container">
<div class="content-container-inner"> <div class="content-container-inner">
<div class="content-main"> <div class="content-main">
<asp:ContentPlaceHolder ID="MainContent" runat="server" /> <asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div> </div>
<div class="clear" /> <div class="clear" />
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
<div class="nav-footer"> <div class="nav-footer">
<ul> <ul>
<li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li> <li class="first"><%=Html.ActionLink("Products", "Index", "Home")%></li>
<li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li> <li><%=Html.ActionLink("Checkout", "Checkout", "Home")%></li>
</ul> </ul>
<p class="copyright">Azure Store</p> <p class="copyright">Azure Store</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,34 +1,34 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<configuration> <configuration>
<system.web> <system.web>
<httpHandlers> <httpHandlers>
<add path="*" verb="*" <add path="*" verb="*"
type="System.Web.HttpNotFoundHandler"/> type="System.Web.HttpNotFoundHandler"/>
</httpHandlers> </httpHandlers>
<!-- <!--
Enabling request validation in view pages would cause validation to occur Enabling request validation in view pages would cause validation to occur
after the input has already been processed by the controller. By default after the input has already been processed by the controller. By default
MVC performs request validation before a controller processes the input. MVC performs request validation before a controller processes the input.
To change this behavior apply the ValidateInputAttribute to a To change this behavior apply the ValidateInputAttribute to a
controller or action. controller or action.
--> -->
<pages <pages
validateRequest="false" validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<controls> <controls>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls> </controls>
</pages> </pages>
</system.web> </system.web>
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<handlers> <handlers>
<remove name="BlockViewHandler"/> <remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/> <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,205 +1,205 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
Note: As an alternative to hand editing this file you can use the Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio. the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in A full list of settings and comments can be found in
machine.config.comments usually located in machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config \Windows\Microsoft.Net\Framework\v2.x\Config
--> -->
<configuration> <configuration>
<configSections> <configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</sectionGroup> </sectionGroup>
</configSections> </configSections>
<appSettings> <appSettings>
<!-- account configuration --> <!-- account configuration -->
<add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/> <add key="BlobStorageEndpoint" value="http://127.0.0.1:10000"/>
<add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/> <add key="TableStorageEndpoint" value="http://127.0.0.1:10002"/>
<add key="AccountName" value="devstoreaccount1"/> <add key="AccountName" value="devstoreaccount1"/>
<add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/> <add key="AccountSharedKey" value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/>
<!-- provider configuration --> <!-- provider configuration -->
<!-- When using the local development table storage service only the default values given <!-- When using the local development table storage service only the default values given
below will work for the tables (Membership, Roles and Sessions) since these are the names below will work for the tables (Membership, Roles and Sessions) since these are the names
of the properties on the DataServiceContext class --> of the properties on the DataServiceContext class -->
<add key="DefaultMembershipTableName" value="Membership"/> <add key="DefaultMembershipTableName" value="Membership"/>
<add key="DefaultRoleTableName" value="Roles"/> <add key="DefaultRoleTableName" value="Roles"/>
<add key="DefaultSessionTableName" value="Sessions"/> <add key="DefaultSessionTableName" value="Sessions"/>
</appSettings> </appSettings>
<connectionStrings> <connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/> <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings> </connectionStrings>
<system.web> <system.web>
<!-- <!--
Set compilation debug="true" to insert debugging Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this symbols into the compiled page. Because this
affects performance, set this value to true only affects performance, set this value to true only
during development. during development.
--> -->
<compilation debug="true"> <compilation debug="true">
<assemblies> <assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies> </assemblies>
</compilation> </compilation>
<!-- <!--
The <authentication> section enables configuration The <authentication> section enables configuration
of the security authentication mode used by of the security authentication mode used by
ASP.NET to identify an incoming user. ASP.NET to identify an incoming user.
--> -->
<authentication mode="Forms"> <authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880"/> <forms loginUrl="~/Account/LogOn" timeout="2880"/>
</authentication> </authentication>
<!-- Membership Provider Configuration --> <!-- Membership Provider Configuration -->
<membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20"> <membership defaultProvider="TableStorageMembershipProvider" userIsOnlineTimeWindow="20">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageMembershipProvider" <add name="TableStorageMembershipProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageMembershipProvider"
description="Membership provider using table storage" description="Membership provider using table storage"
applicationName="MVCAzureStore" applicationName="MVCAzureStore"
enablePasswordRetrieval="false" enablePasswordRetrieval="false"
enablePasswordReset="true" enablePasswordReset="true"
requiresQuestionAndAnswer="false" requiresQuestionAndAnswer="false"
minRequiredPasswordLength="1" minRequiredPasswordLength="1"
minRequiredNonalphanumericCharacters="0" minRequiredNonalphanumericCharacters="0"
requiresUniqueEmail="false" requiresUniqueEmail="false"
passwordFormat="Hashed"/> passwordFormat="Hashed"/>
</providers> </providers>
</membership> </membership>
<!-- RoleManager Provider Configuration --> <!-- RoleManager Provider Configuration -->
<roleManager enabled="true" <roleManager enabled="true"
defaultProvider="TableStorageRoleProvider" defaultProvider="TableStorageRoleProvider"
cacheRolesInCookie="true" cacheRolesInCookie="true"
cookieName=".ASPXROLES" cookieName=".ASPXROLES"
cookieTimeout="30" cookieTimeout="30"
cookiePath="/" cookiePath="/"
cookieRequireSSL="false" cookieRequireSSL="false"
cookieSlidingExpiration="true" cookieSlidingExpiration="true"
cookieProtection="All"> cookieProtection="All">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageRoleProvider" <add name="TableStorageRoleProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageRoleProvider"
description="Role provider using table storage" description="Role provider using table storage"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</roleManager> </roleManager>
<!-- SessionState Provider Configuration --> <!-- SessionState Provider Configuration -->
<sessionState mode="Custom" <sessionState mode="Custom"
customProvider="TableStorageSessionStateProvider"> customProvider="TableStorageSessionStateProvider">
<providers> <providers>
<clear/> <clear/>
<add name="TableStorageSessionStateProvider" <add name="TableStorageSessionStateProvider"
type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider" type="Microsoft.Samples.ServiceHosting.AspProviders.TableStorageSessionStateProvider"
applicationName="MVCAzureStore" /> applicationName="MVCAzureStore" />
</providers> </providers>
</sessionState> </sessionState>
<profile> <profile>
<providers> <providers>
<clear/> <clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/> <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/>
</providers> </providers>
</profile> </profile>
<!-- <!--
The <customErrors> section enables configuration The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs of what to do if/when an unhandled error occurs
during the execution of a request. Specifically, during the execution of a request. Specifically,
it enables developers to configure html error pages it enables developers to configure html error pages
to be displayed in place of a error stack trace. to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" /> <error statusCode="404" redirect="FileNotFound.htm" />
</customErrors> </customErrors>
--> -->
<pages> <pages>
<controls> <controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</controls> </controls>
<namespaces> <namespaces>
<add namespace="System.Web.Mvc"/> <add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/> <add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/> <add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/> <add namespace="System.Web.Routing"/>
<add namespace="System.Linq"/> <add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/> <add namespace="System.Collections.Generic"/>
<add namespace="Helpers" /> <add namespace="Helpers" />
</namespaces> </namespaces>
</pages> </pages>
<httpHandlers> <httpHandlers>
<remove verb="*" path="*.asmx"/> <remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/> <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
<add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpHandlers> </httpHandlers>
<httpModules> <httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules> </httpModules>
</system.web> </system.web>
<system.codedom> <system.codedom>
<compilers> <compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" warningLevel="4" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/> <providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="OptionInfer" value="true"/> <providerOption name="OptionInfer" value="true"/>
<providerOption name="WarnAsError" value="false"/> <providerOption name="WarnAsError" value="false"/>
</compiler> </compiler>
</compilers> </compilers>
</system.codedom> </system.codedom>
<system.web.extensions/> <system.web.extensions/>
<!-- <!--
The system.webServer section is required for running ASP.NET AJAX under Internet The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS. Information Services 7.0. It is not necessary for previous version of IIS.
--> -->
<system.webServer> <system.webServer>
<validation validateIntegratedModeConfiguration="false"/> <validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true"> <modules runAllManagedModulesForAllRequests="true">
<remove name="ScriptModule"/> <remove name="ScriptModule"/>
<remove name="UrlRoutingModule"/> <remove name="UrlRoutingModule"/>
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</modules> </modules>
<handlers> <handlers>
<remove name="WebServiceHandlerFactory-Integrated"/> <remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/> <remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/> <remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/> <remove name="ScriptResource"/>
<remove name="MvcHttpHandler"/> <remove name="MvcHttpHandler"/>
<remove name="UrlRoutingHandler"/> <remove name="UrlRoutingHandler"/>
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</handlers> </handlers>
</system.webServer> </system.webServer>
</configuration> </configuration>

View file

@ -1,2 +1,2 @@
BEFORE YOU RUN THIS APPLICATION BEFORE YOU RUN THIS APPLICATION
• Ensure that the start up project is set to AzureStoreService • Ensure that the start up project is set to AzureStoreService

View file

@ -1,14 +1,14 @@
ASP Classic Compiler ASP Classic Compiler
Copyright 2009-2011 Li Chen Copyright 2009-2011 Li Chen
THIRD-PARTY CREDITS AND COPYRIGHT NOTICES GO HERE THIRD-PARTY CREDITS AND COPYRIGHT NOTICES GO HERE
MvcContrib includes or is derivative of works distributed under the licenses listed below. The full text for most of the licenses listed below can be found in the LICENSE.txt file accompanying each work. The original copyright notices have been preserved within the respective files and or packages. Please refer to the specific files and/or packages for more detailed information about the authors, copyright notices, and licenses. MvcContrib includes or is derivative of works distributed under the licenses listed below. The full text for most of the licenses listed below can be found in the LICENSE.txt file accompanying each work. The original copyright notices have been preserved within the respective files and or packages. Please refer to the specific files and/or packages for more detailed information about the authors, copyright notices, and licenses.
3rd Party Libraries 3rd Party Libraries
VBParser VBParser
----------------- -----------------
Website: http://www.panopticoncentral.net/archive/2006/03/27/11531.aspx Website: http://www.panopticoncentral.net/archive/2006/03/27/11531.aspx
Copyright: (c) 2006 Paul Vick Copyright: (c) 2006 Paul Vick
License: Shared Source License License: Shared Source License

View file

@ -1,71 +1,71 @@
http://www.codeplex.com/ASPClassicCompiler/license http://www.codeplex.com/ASPClassicCompiler/license
Apache License Apache License
Version 2.0, January 2004 Version 2.0, January 2004
http://www.apache.org/licenses/ http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions. 1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2. Grant of Copyright License. 2. Grant of Copyright License.
Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. 3. Grant of Patent License.
Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
4. Redistribution. 4. Redistribution.
You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
1. You must give any other recipients of the Work or Derivative Works a copy of this License; and 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
2. You must cause any modified files to carry prominent notices stating that You changed the files; and 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. 5. Submission of Contributions.
Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
6. Trademarks. 6. Trademarks.
This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. 7. Disclaimer of Warranty.
Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. 8. Limitation of Liability.
In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. 9. Accepting Warranty or Additional Liability.
While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

View file

@ -1,4 +1,4 @@
<connectionStrings> <connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/> <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
<add name="NerdDinnerConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\NerdDinner.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/> <add name="NerdDinnerConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\NerdDinner.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings> </connectionStrings>

View file

@ -1,378 +1,378 @@
/*---------------------------------------------------------- /*----------------------------------------------------------
The base color for this template is #5c87b2. If you'd like The base color for this template is #5c87b2. If you'd like
to use a different color start by replacing all instances of to use a different color start by replacing all instances of
#5c87b2 with your new color. #5c87b2 with your new color.
----------------------------------------------------------*/ ----------------------------------------------------------*/
body body
{ {
background-color: #5c87b2; background-color: #5c87b2;
font-size: .75em; font-size: .75em;
font-family: Verdana, Helvetica, Sans-Serif; font-family: Verdana, Helvetica, Sans-Serif;
margin: 0; margin: 0;
padding: 0; padding: 0;
color: #696969; color: #696969;
} }
a:link a:link
{ {
color: #034af3; color: #034af3;
text-decoration: underline; text-decoration: underline;
} }
a:visited a:visited
{ {
color: #505abc; color: #505abc;
} }
a:hover a:hover
{ {
color: #1d60ff; color: #1d60ff;
text-decoration: none; text-decoration: none;
} }
a:active a:active
{ {
color: #12eb87; color: #12eb87;
} }
p, ul p, ul
{ {
margin-bottom: 20px; margin-bottom: 20px;
line-height: 1.6em; line-height: 1.6em;
} }
/* HEADINGS /* HEADINGS
----------------------------------------------------------*/ ----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 h1, h2, h3, h4, h5, h6
{ {
font-size: 1.5em; font-size: 1.5em;
color: #000; color: #000;
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }
h1 h1
{ {
font-size: 2em; font-size: 2em;
padding-bottom: 0; padding-bottom: 0;
margin-bottom: 0; margin-bottom: 0;
} }
h2 h2
{ {
padding: 0 0 10px 0; padding: 0 0 10px 0;
} }
h3 h3
{ {
font-size: 1.2em; font-size: 1.2em;
} }
h4 h4
{ {
font-size: 1.1em; font-size: 1.1em;
} }
h5, h6 h5, h6
{ {
font-size: 1em; font-size: 1em;
} }
/* this rule styles <h2> tags that are the /* this rule styles <h2> tags that are the
first child of the left and right table columns */ first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 .rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{ {
margin-top: 0; margin-top: 0;
} }
/* PRIMARY LAYOUT ELEMENTS /* PRIMARY LAYOUT ELEMENTS
----------------------------------------------------------*/ ----------------------------------------------------------*/
/* you can specify a greater or lesser percentage for the /* you can specify a greater or lesser percentage for the
page width. Or, you can specify an exact pixel width. */ page width. Or, you can specify an exact pixel width. */
.page .page
{ {
width: 90%; width: 90%;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
#header #header
{ {
position: relative; position: relative;
margin-bottom: 0px; margin-bottom: 0px;
color: #000; color: #000;
padding: 0; padding: 0;
} }
#header h1 #header h1
{ {
font-weight: bold; font-weight: bold;
padding: 5px 0; padding: 5px 0;
margin: 0; margin: 0;
color: #fff; color: #fff;
border: none; border: none;
line-height: 2em; line-height: 2em;
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
font-size: 32px !important; font-size: 32px !important;
} }
#main #main
{ {
padding: 30px 30px 15px 30px; padding: 30px 30px 15px 30px;
background-color: #fff; background-color: #fff;
margin-bottom: 30px; margin-bottom: 30px;
_height: 1px; /* only IE6 applies CSS properties starting with an underscrore */ _height: 1px; /* only IE6 applies CSS properties starting with an underscrore */
height: 590px; height: 590px;
} }
#footer #footer
{ {
color: #999; color: #999;
padding: 10px 0; padding: 10px 0;
text-align: center; text-align: center;
line-height: normal; line-height: normal;
margin: 0; margin: 0;
font-size: .9em; font-size: .9em;
} }
/* TAB MENU /* TAB MENU
----------------------------------------------------------*/ ----------------------------------------------------------*/
ul#menu ul#menu
{ {
border-bottom: 1px #5C87B2 solid; border-bottom: 1px #5C87B2 solid;
padding: 0 0 2px; padding: 0 0 2px;
position: relative; position: relative;
margin: 0; margin: 0;
text-align: right; text-align: right;
} }
ul#menu li ul#menu li
{ {
display: inline; display: inline;
list-style: none; list-style: none;
} }
ul#menu li#greeting ul#menu li#greeting
{ {
padding: 10px 20px; padding: 10px 20px;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
line-height: 2.8em; line-height: 2.8em;
color: #fff; color: #fff;
} }
ul#menu li a ul#menu li a
{ {
padding: 10px 20px; padding: 10px 20px;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
line-height: 2.8em; line-height: 2.8em;
background-color: #e8eef4; background-color: #e8eef4;
color: #034af3; color: #034af3;
} }
ul#menu li a:hover ul#menu li a:hover
{ {
background-color: #fff; background-color: #fff;
text-decoration: none; text-decoration: none;
} }
ul#menu li a:active ul#menu li a:active
{ {
background-color: #a6e2a6; background-color: #a6e2a6;
text-decoration: none; text-decoration: none;
} }
ul#menu li.selected a ul#menu li.selected a
{ {
background-color: #fff; background-color: #fff;
color: #000; color: #000;
} }
/* FORM LAYOUT ELEMENTS /* FORM LAYOUT ELEMENTS
----------------------------------------------------------*/ ----------------------------------------------------------*/
fieldset fieldset
{ {
margin: 1em 0; margin: 1em 0;
padding: 1em; padding: 1em;
border: 1px solid #CCC; border: 1px solid #CCC;
} }
fieldset p fieldset p
{ {
margin: 2px 12px 10px 10px; margin: 2px 12px 10px 10px;
} }
fieldset label fieldset label
{ {
display: block; display: block;
} }
fieldset label.inline fieldset label.inline
{ {
display: inline; display: inline;
} }
legend legend
{ {
font-size: 1.1em; font-size: 1.1em;
font-weight: 600; font-weight: 600;
padding: 2px 4px 8px 4px; padding: 2px 4px 8px 4px;
} }
input[type="text"] input[type="text"]
{ {
width: 200px; width: 200px;
border: 1px solid #CCC; border: 1px solid #CCC;
} }
input[type="password"] input[type="password"]
{ {
width: 200px; width: 200px;
border: 1px solid #CCC; border: 1px solid #CCC;
} }
/* TABLE /* TABLE
----------------------------------------------------------*/ ----------------------------------------------------------*/
table table
{ {
border: solid 1px #e8eef4; border: solid 1px #e8eef4;
border-collapse: collapse; border-collapse: collapse;
} }
table td table td
{ {
padding: 5px; padding: 5px;
border: solid 1px #e8eef4; border: solid 1px #e8eef4;
} }
table th table th
{ {
padding: 6px 5px; padding: 6px 5px;
text-align: left; text-align: left;
background-color: #e8eef4; background-color: #e8eef4;
border: solid 1px #e8eef4; border: solid 1px #e8eef4;
} }
/* MISC /* MISC
----------------------------------------------------------*/ ----------------------------------------------------------*/
.clear .clear
{ {
clear: both; clear: both;
} }
.error .error
{ {
color:Red; color:Red;
} }
#menucontainer #menucontainer
{ {
margin-top:40px; margin-top:40px;
} }
div#title div#title
{ {
display:block; display:block;
float:left; float:left;
text-align:left; text-align:left;
} }
#logindisplay #logindisplay
{ {
font-size:1.1em; font-size:1.1em;
display:block; display:block;
text-align:right; text-align:right;
margin:10px; margin:10px;
color:White; color:White;
} }
#logindisplay a:link #logindisplay a:link
{ {
color: white; color: white;
text-decoration: underline; text-decoration: underline;
} }
#logindisplay a:visited #logindisplay a:visited
{ {
color: white; color: white;
text-decoration: underline; text-decoration: underline;
} }
#logindisplay a:hover #logindisplay a:hover
{ {
color: white; color: white;
text-decoration: none; text-decoration: none;
} }
.field-validation-error .field-validation-error
{ {
color: #ff0000; color: #ff0000;
} }
.input-validation-error .input-validation-error
{ {
border: 1px solid #ff0000; border: 1px solid #ff0000;
background-color: #ffeeee; background-color: #ffeeee;
} }
.validation-summary-errors .validation-summary-errors
{ {
font-weight: bold; font-weight: bold;
color: #ff0000; color: #ff0000;
} }
#dinnerform textarea #dinnerform textarea
{ {
width:200px; width:200px;
height:70px; height:70px;
} }
#dinnerDiv textarea #dinnerDiv textarea
{ {
width:200px; width:200px;
height:70px; height:70px;
} }
#rsvpmsg #rsvpmsg
{ {
color:Red; color:Red;
} }
hr hr
{ {
padding:0px, 10px, 0px, 10px; padding:0px, 10px, 0px, 10px;
height:1px; height:1px;
} }
#pagination #pagination
{ {
text-align:center; text-align:center;
} }
#dinnerDiv { #dinnerDiv {
float: left; float: left;
width: 280px; width: 280px;
} }
#mapDiv { #mapDiv {
float: left; float: left;
} }
#mapDivLeft { #mapDivLeft {
float: left; float: left;
} }
#mapDivRight { #mapDivRight {
padding: 30px 0px 0px 20px; padding: 30px 0px 0px 20px;
float: left; float: left;
} }
#dinnerList { #dinnerList {
padding:0px 0px 0px 0px; padding:0px 0px 0px 0px;
} }
#searchBox { #searchBox {
padding:0px 0px 10px 0px; padding:0px 0px 10px 0px;
} }
#theMap { #theMap {
position: relative; position: relative;
width: 500px; width: 500px;
height: 450px; height: 450px;
} }

View file

@ -1,297 +1,297 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Globalization; using System.Globalization;
using System.Linq; using System.Linq;
using System.Security.Principal; using System.Security.Principal;
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
using System.Web.Security; using System.Web.Security;
using System.Web.UI; using System.Web.UI;
namespace NerdDinner.Controllers { namespace NerdDinner.Controllers {
[HandleError] [HandleError]
public class AccountController : Controller { public class AccountController : Controller {
// This constructor is used by the MVC framework to instantiate the controller using // This constructor is used by the MVC framework to instantiate the controller using
// the default forms authentication and membership providers. // the default forms authentication and membership providers.
public AccountController() public AccountController()
: this(null, null) { : this(null, null) {
} }
// This constructor is not used by the MVC framework but is instead provided for ease // This constructor is not used by the MVC framework but is instead provided for ease
// of unit testing this type. See the comments at the end of this file for more // of unit testing this type. See the comments at the end of this file for more
// information. // information.
public AccountController(IFormsAuthentication formsAuth, IMembershipService service) { public AccountController(IFormsAuthentication formsAuth, IMembershipService service) {
FormsAuth = formsAuth ?? new FormsAuthenticationService(); FormsAuth = formsAuth ?? new FormsAuthenticationService();
MembershipService = service ?? new AccountMembershipService(); MembershipService = service ?? new AccountMembershipService();
} }
public IFormsAuthentication FormsAuth { public IFormsAuthentication FormsAuth {
get; get;
private set; private set;
} }
public IMembershipService MembershipService { public IMembershipService MembershipService {
get; get;
private set; private set;
} }
public ActionResult LogOn() { public ActionResult LogOn() {
return View(); return View();
} }
[AcceptVerbs(HttpVerbs.Post)] [AcceptVerbs(HttpVerbs.Post)]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings", [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Needs to take same parameter type as Controller.Redirect()")] Justification = "Needs to take same parameter type as Controller.Redirect()")]
public ActionResult LogOn(string userName, string password, bool rememberMe, string returnUrl) { public ActionResult LogOn(string userName, string password, bool rememberMe, string returnUrl) {
if (!ValidateLogOn(userName, password)) { if (!ValidateLogOn(userName, password)) {
ViewData["rememberMe"] = rememberMe; ViewData["rememberMe"] = rememberMe;
return View(); return View();
} }
FormsAuth.SignIn(userName, rememberMe); FormsAuth.SignIn(userName, rememberMe);
if (!String.IsNullOrEmpty(returnUrl)) { if (!String.IsNullOrEmpty(returnUrl)) {
return Redirect(returnUrl); return Redirect(returnUrl);
} }
else { else {
return RedirectToAction("Index", "Home"); return RedirectToAction("Index", "Home");
} }
} }
public ActionResult LogOff() { public ActionResult LogOff() {
FormsAuth.SignOut(); FormsAuth.SignOut();
return RedirectToAction("Index", "Home"); return RedirectToAction("Index", "Home");
} }
public ActionResult Register() { public ActionResult Register() {
ViewData["PasswordLength"] = MembershipService.MinPasswordLength; ViewData["PasswordLength"] = MembershipService.MinPasswordLength;
return View(); return View();
} }
[AcceptVerbs(HttpVerbs.Post)] [AcceptVerbs(HttpVerbs.Post)]
public ActionResult Register(string userName, string email, string password, string confirmPassword) { public ActionResult Register(string userName, string email, string password, string confirmPassword) {
ViewData["PasswordLength"] = MembershipService.MinPasswordLength; ViewData["PasswordLength"] = MembershipService.MinPasswordLength;
if (ValidateRegistration(userName, email, password, confirmPassword)) { if (ValidateRegistration(userName, email, password, confirmPassword)) {
// Attempt to register the user // Attempt to register the user
MembershipCreateStatus createStatus = MembershipService.CreateUser(userName, password, email); MembershipCreateStatus createStatus = MembershipService.CreateUser(userName, password, email);
if (createStatus == MembershipCreateStatus.Success) { if (createStatus == MembershipCreateStatus.Success) {
FormsAuth.SignIn(userName, false /* createPersistentCookie */); FormsAuth.SignIn(userName, false /* createPersistentCookie */);
return RedirectToAction("Index", "Home"); return RedirectToAction("Index", "Home");
} }
else { else {
ModelState.AddModelError("_FORM", ErrorCodeToString(createStatus)); ModelState.AddModelError("_FORM", ErrorCodeToString(createStatus));
} }
} }
// If we got this far, something failed, redisplay form // If we got this far, something failed, redisplay form
return View(); return View();
} }
[Authorize] [Authorize]
public ActionResult ChangePassword() { public ActionResult ChangePassword() {
ViewData["PasswordLength"] = MembershipService.MinPasswordLength; ViewData["PasswordLength"] = MembershipService.MinPasswordLength;
return View(); return View();
} }
[Authorize] [Authorize]
[AcceptVerbs(HttpVerbs.Post)] [AcceptVerbs(HttpVerbs.Post)]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes",
Justification = "Exceptions result in password not being changed.")] Justification = "Exceptions result in password not being changed.")]
public ActionResult ChangePassword(string currentPassword, string newPassword, string confirmPassword) { public ActionResult ChangePassword(string currentPassword, string newPassword, string confirmPassword) {
ViewData["PasswordLength"] = MembershipService.MinPasswordLength; ViewData["PasswordLength"] = MembershipService.MinPasswordLength;
if (!ValidateChangePassword(currentPassword, newPassword, confirmPassword)) { if (!ValidateChangePassword(currentPassword, newPassword, confirmPassword)) {
return View(); return View();
} }
try { try {
if (MembershipService.ChangePassword(User.Identity.Name, currentPassword, newPassword)) { if (MembershipService.ChangePassword(User.Identity.Name, currentPassword, newPassword)) {
return RedirectToAction("ChangePasswordSuccess"); return RedirectToAction("ChangePasswordSuccess");
} }
else { else {
ModelState.AddModelError("_FORM", "The current password is incorrect or the new password is invalid."); ModelState.AddModelError("_FORM", "The current password is incorrect or the new password is invalid.");
return View(); return View();
} }
} }
catch { catch {
ModelState.AddModelError("_FORM", "The current password is incorrect or the new password is invalid."); ModelState.AddModelError("_FORM", "The current password is incorrect or the new password is invalid.");
return View(); return View();
} }
} }
public ActionResult ChangePasswordSuccess() { public ActionResult ChangePasswordSuccess() {
return View(); return View();
} }
protected override void OnActionExecuting(ActionExecutingContext filterContext) { protected override void OnActionExecuting(ActionExecutingContext filterContext) {
if (filterContext.HttpContext.User.Identity is WindowsIdentity) { if (filterContext.HttpContext.User.Identity is WindowsIdentity) {
throw new InvalidOperationException("Windows authentication is not supported."); throw new InvalidOperationException("Windows authentication is not supported.");
} }
} }
#region Validation Methods #region Validation Methods
private bool ValidateChangePassword(string currentPassword, string newPassword, string confirmPassword) { private bool ValidateChangePassword(string currentPassword, string newPassword, string confirmPassword) {
if (String.IsNullOrEmpty(currentPassword)) { if (String.IsNullOrEmpty(currentPassword)) {
ModelState.AddModelError("currentPassword", "You must specify a current password."); ModelState.AddModelError("currentPassword", "You must specify a current password.");
} }
if (newPassword == null || newPassword.Length < MembershipService.MinPasswordLength) { if (newPassword == null || newPassword.Length < MembershipService.MinPasswordLength) {
ModelState.AddModelError("newPassword", ModelState.AddModelError("newPassword",
String.Format(CultureInfo.CurrentCulture, String.Format(CultureInfo.CurrentCulture,
"You must specify a new password of {0} or more characters.", "You must specify a new password of {0} or more characters.",
MembershipService.MinPasswordLength)); MembershipService.MinPasswordLength));
} }
if (!String.Equals(newPassword, confirmPassword, StringComparison.Ordinal)) { if (!String.Equals(newPassword, confirmPassword, StringComparison.Ordinal)) {
ModelState.AddModelError("_FORM", "The new password and confirmation password do not match."); ModelState.AddModelError("_FORM", "The new password and confirmation password do not match.");
} }
return ModelState.IsValid; return ModelState.IsValid;
} }
private bool ValidateLogOn(string userName, string password) { private bool ValidateLogOn(string userName, string password) {
if (String.IsNullOrEmpty(userName)) { if (String.IsNullOrEmpty(userName)) {
ModelState.AddModelError("username", "You must specify a username."); ModelState.AddModelError("username", "You must specify a username.");
} }
if (String.IsNullOrEmpty(password)) { if (String.IsNullOrEmpty(password)) {
ModelState.AddModelError("password", "You must specify a password."); ModelState.AddModelError("password", "You must specify a password.");
} }
if (!MembershipService.ValidateUser(userName, password)) { if (!MembershipService.ValidateUser(userName, password)) {
ModelState.AddModelError("_FORM", "The username or password provided is incorrect."); ModelState.AddModelError("_FORM", "The username or password provided is incorrect.");
} }
return ModelState.IsValid; return ModelState.IsValid;
} }
private bool ValidateRegistration(string userName, string email, string password, string confirmPassword) { private bool ValidateRegistration(string userName, string email, string password, string confirmPassword) {
if (String.IsNullOrEmpty(userName)) { if (String.IsNullOrEmpty(userName)) {
ModelState.AddModelError("username", "You must specify a username."); ModelState.AddModelError("username", "You must specify a username.");
} }
if (String.IsNullOrEmpty(email)) { if (String.IsNullOrEmpty(email)) {
ModelState.AddModelError("email", "You must specify an email address."); ModelState.AddModelError("email", "You must specify an email address.");
} }
if (password == null || password.Length < MembershipService.MinPasswordLength) { if (password == null || password.Length < MembershipService.MinPasswordLength) {
ModelState.AddModelError("password", ModelState.AddModelError("password",
String.Format(CultureInfo.CurrentCulture, String.Format(CultureInfo.CurrentCulture,
"You must specify a password of {0} or more characters.", "You must specify a password of {0} or more characters.",
MembershipService.MinPasswordLength)); MembershipService.MinPasswordLength));
} }
if (!String.Equals(password, confirmPassword, StringComparison.Ordinal)) { if (!String.Equals(password, confirmPassword, StringComparison.Ordinal)) {
ModelState.AddModelError("_FORM", "The new password and confirmation password do not match."); ModelState.AddModelError("_FORM", "The new password and confirmation password do not match.");
} }
return ModelState.IsValid; return ModelState.IsValid;
} }
private static string ErrorCodeToString(MembershipCreateStatus createStatus) { private static string ErrorCodeToString(MembershipCreateStatus createStatus) {
// See http://msdn.microsoft.com/en-us/library/system.web.security.membershipcreatestatus.aspx for // See http://msdn.microsoft.com/en-us/library/system.web.security.membershipcreatestatus.aspx for
// a full list of status codes. // a full list of status codes.
switch (createStatus) { switch (createStatus) {
case MembershipCreateStatus.DuplicateUserName: case MembershipCreateStatus.DuplicateUserName:
return "Username already exists. Please enter a different user name."; return "Username already exists. Please enter a different user name.";
case MembershipCreateStatus.DuplicateEmail: case MembershipCreateStatus.DuplicateEmail:
return "A username for that e-mail address already exists. Please enter a different e-mail address."; return "A username for that e-mail address already exists. Please enter a different e-mail address.";
case MembershipCreateStatus.InvalidPassword: case MembershipCreateStatus.InvalidPassword:
return "The password provided is invalid. Please enter a valid password value."; return "The password provided is invalid. Please enter a valid password value.";
case MembershipCreateStatus.InvalidEmail: case MembershipCreateStatus.InvalidEmail:
return "The e-mail address provided is invalid. Please check the value and try again."; return "The e-mail address provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidAnswer: case MembershipCreateStatus.InvalidAnswer:
return "The password retrieval answer provided is invalid. Please check the value and try again."; return "The password retrieval answer provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidQuestion: case MembershipCreateStatus.InvalidQuestion:
return "The password retrieval question provided is invalid. Please check the value and try again."; return "The password retrieval question provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidUserName: case MembershipCreateStatus.InvalidUserName:
return "The user name provided is invalid. Please check the value and try again."; return "The user name provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.ProviderError: case MembershipCreateStatus.ProviderError:
return "The authentication provider returned an error. Please verify your entry and try again. If the problem persists, please contact your system administrator."; return "The authentication provider returned an error. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
case MembershipCreateStatus.UserRejected: case MembershipCreateStatus.UserRejected:
return "The user creation request has been canceled. Please verify your entry and try again. If the problem persists, please contact your system administrator."; return "The user creation request has been canceled. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
default: default:
return "An unknown error occurred. Please verify your entry and try again. If the problem persists, please contact your system administrator."; return "An unknown error occurred. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
} }
} }
#endregion #endregion
} }
// The FormsAuthentication type is sealed and contains static members, so it is difficult to // The FormsAuthentication type is sealed and contains static members, so it is difficult to
// unit test code that calls its members. The interface and helper class below demonstrate // unit test code that calls its members. The interface and helper class below demonstrate
// how to create an abstract wrapper around such a type in order to make the AccountController // how to create an abstract wrapper around such a type in order to make the AccountController
// code unit testable. // code unit testable.
public interface IFormsAuthentication { public interface IFormsAuthentication {
void SignIn(string userName, bool createPersistentCookie); void SignIn(string userName, bool createPersistentCookie);
void SignOut(); void SignOut();
} }
public class FormsAuthenticationService : IFormsAuthentication { public class FormsAuthenticationService : IFormsAuthentication {
public void SignIn(string userName, bool createPersistentCookie) { public void SignIn(string userName, bool createPersistentCookie) {
FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); FormsAuthentication.SetAuthCookie(userName, createPersistentCookie);
} }
public void SignOut() { public void SignOut() {
FormsAuthentication.SignOut(); FormsAuthentication.SignOut();
} }
} }
public interface IMembershipService { public interface IMembershipService {
int MinPasswordLength { get; } int MinPasswordLength { get; }
bool ValidateUser(string userName, string password); bool ValidateUser(string userName, string password);
MembershipCreateStatus CreateUser(string userName, string password, string email); MembershipCreateStatus CreateUser(string userName, string password, string email);
bool ChangePassword(string userName, string oldPassword, string newPassword); bool ChangePassword(string userName, string oldPassword, string newPassword);
} }
public class AccountMembershipService : IMembershipService { public class AccountMembershipService : IMembershipService {
private MembershipProvider _provider; private MembershipProvider _provider;
public AccountMembershipService() public AccountMembershipService()
: this(null) { : this(null) {
} }
public AccountMembershipService(MembershipProvider provider) { public AccountMembershipService(MembershipProvider provider) {
_provider = provider ?? Membership.Provider; _provider = provider ?? Membership.Provider;
} }
public int MinPasswordLength { public int MinPasswordLength {
get { get {
return _provider.MinRequiredPasswordLength; return _provider.MinRequiredPasswordLength;
} }
} }
public bool ValidateUser(string userName, string password) { public bool ValidateUser(string userName, string password) {
return _provider.ValidateUser(userName, password); return _provider.ValidateUser(userName, password);
} }
public MembershipCreateStatus CreateUser(string userName, string password, string email) { public MembershipCreateStatus CreateUser(string userName, string password, string email) {
MembershipCreateStatus status; MembershipCreateStatus status;
_provider.CreateUser(userName, password, email, null, null, true, null, out status); _provider.CreateUser(userName, password, email, null, null, true, null, out status);
return status; return status;
} }
public bool ChangePassword(string userName, string oldPassword, string newPassword) { public bool ChangePassword(string userName, string oldPassword, string newPassword) {
MembershipUser currentUser = _provider.GetUser(userName, true /* userIsOnline */); MembershipUser currentUser = _provider.GetUser(userName, true /* userIsOnline */);
return currentUser.ChangePassword(oldPassword, newPassword); return currentUser.ChangePassword(oldPassword, newPassword);
} }
} }
} }

View file

@ -1,189 +1,189 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web.Mvc; using System.Web.Mvc;
using NerdDinner.Helpers; using NerdDinner.Helpers;
using NerdDinner.Models; using NerdDinner.Models;
namespace NerdDinner.Controllers { namespace NerdDinner.Controllers {
// //
// ViewModel Classes // ViewModel Classes
public class DinnerFormViewModel { public class DinnerFormViewModel {
// Properties // Properties
public Dinner Dinner { get; private set; } public Dinner Dinner { get; private set; }
public SelectList Countries { get; private set; } public SelectList Countries { get; private set; }
// Constructor // Constructor
public DinnerFormViewModel(Dinner dinner) { public DinnerFormViewModel(Dinner dinner) {
Dinner = dinner; Dinner = dinner;
Countries = new SelectList(PhoneValidator.Countries, Dinner.Country); Countries = new SelectList(PhoneValidator.Countries, Dinner.Country);
} }
} }
// //
// Controller Class // Controller Class
[HandleError] [HandleError]
public class DinnersController : Controller { public class DinnersController : Controller {
IDinnerRepository dinnerRepository; IDinnerRepository dinnerRepository;
// //
// Dependency Injection enabled constructors // Dependency Injection enabled constructors
public DinnersController() public DinnersController()
: this(new DinnerRepository()) { : this(new DinnerRepository()) {
} }
public DinnersController(IDinnerRepository repository) { public DinnersController(IDinnerRepository repository) {
dinnerRepository = repository; dinnerRepository = repository;
} }
// //
// GET: /Dinners/ // GET: /Dinners/
// /Dinners/Page/2 // /Dinners/Page/2
public ActionResult Index(int? page) { public ActionResult Index(int? page) {
const int pageSize = 10; const int pageSize = 10;
var upcomingDinners = dinnerRepository.FindUpcomingDinners(); var upcomingDinners = dinnerRepository.FindUpcomingDinners();
var paginatedDinners = new PaginatedList<Dinner>(upcomingDinners, page ?? 0, pageSize); var paginatedDinners = new PaginatedList<Dinner>(upcomingDinners, page ?? 0, pageSize);
return View(paginatedDinners); return View(paginatedDinners);
} }
// //
// GET: /Dinners/Details/5 // GET: /Dinners/Details/5
public ActionResult Details(int id) { public ActionResult Details(int id) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (dinner == null) if (dinner == null)
return View("NotFound"); return View("NotFound");
return View(dinner); return View(dinner);
} }
// //
// GET: /Dinners/Edit/5 // GET: /Dinners/Edit/5
[Authorize] [Authorize]
public ActionResult Edit(int id) { public ActionResult Edit(int id) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (!dinner.IsHostedBy(User.Identity.Name)) if (!dinner.IsHostedBy(User.Identity.Name))
return View("InvalidOwner"); return View("InvalidOwner");
return View(new DinnerFormViewModel(dinner)); return View(new DinnerFormViewModel(dinner));
} }
// //
// POST: /Dinners/Edit/5 // POST: /Dinners/Edit/5
[AcceptVerbs(HttpVerbs.Post), Authorize] [AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Edit(int id, FormCollection collection) { public ActionResult Edit(int id, FormCollection collection) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (!dinner.IsHostedBy(User.Identity.Name)) if (!dinner.IsHostedBy(User.Identity.Name))
return View("InvalidOwner"); return View("InvalidOwner");
try { try {
UpdateModel(dinner); UpdateModel(dinner);
dinnerRepository.Save(); dinnerRepository.Save();
return RedirectToAction("Details", new { id=dinner.DinnerID }); return RedirectToAction("Details", new { id=dinner.DinnerID });
} }
catch { catch {
ModelState.AddModelErrors(dinner.GetRuleViolations()); ModelState.AddModelErrors(dinner.GetRuleViolations());
return View(new DinnerFormViewModel(dinner)); return View(new DinnerFormViewModel(dinner));
} }
} }
// //
// GET: /Dinners/Create // GET: /Dinners/Create
[Authorize] [Authorize]
public ActionResult Create() { public ActionResult Create() {
Dinner dinner = new Dinner() { Dinner dinner = new Dinner() {
EventDate = DateTime.Now.AddDays(7) EventDate = DateTime.Now.AddDays(7)
}; };
return View(new DinnerFormViewModel(dinner)); return View(new DinnerFormViewModel(dinner));
} }
// //
// POST: /Dinners/Create // POST: /Dinners/Create
[AcceptVerbs(HttpVerbs.Post), Authorize] [AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Create(Dinner dinner) { public ActionResult Create(Dinner dinner) {
if (ModelState.IsValid) { if (ModelState.IsValid) {
try { try {
dinner.HostedBy = User.Identity.Name; dinner.HostedBy = User.Identity.Name;
RSVP rsvp = new RSVP(); RSVP rsvp = new RSVP();
rsvp.AttendeeName = User.Identity.Name; rsvp.AttendeeName = User.Identity.Name;
dinner.RSVPs.Add(rsvp); dinner.RSVPs.Add(rsvp);
dinnerRepository.Add(dinner); dinnerRepository.Add(dinner);
dinnerRepository.Save(); dinnerRepository.Save();
return RedirectToAction("Details", new { id=dinner.DinnerID }); return RedirectToAction("Details", new { id=dinner.DinnerID });
} }
catch { catch {
ModelState.AddModelErrors(dinner.GetRuleViolations()); ModelState.AddModelErrors(dinner.GetRuleViolations());
} }
} }
return View(new DinnerFormViewModel(dinner)); return View(new DinnerFormViewModel(dinner));
} }
// //
// HTTP GET: /Dinners/Delete/1 // HTTP GET: /Dinners/Delete/1
[Authorize] [Authorize]
public ActionResult Delete(int id) { public ActionResult Delete(int id) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (dinner == null) if (dinner == null)
return View("NotFound"); return View("NotFound");
if (!dinner.IsHostedBy(User.Identity.Name)) if (!dinner.IsHostedBy(User.Identity.Name))
return View("InvalidOwner"); return View("InvalidOwner");
return View(dinner); return View(dinner);
} }
// //
// HTTP POST: /Dinners/Delete/1 // HTTP POST: /Dinners/Delete/1
[AcceptVerbs(HttpVerbs.Post), Authorize] [AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Delete(int id, string confirmButton) { public ActionResult Delete(int id, string confirmButton) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (dinner == null) if (dinner == null)
return View("NotFound"); return View("NotFound");
if (!dinner.IsHostedBy(User.Identity.Name)) if (!dinner.IsHostedBy(User.Identity.Name))
return View("InvalidOwner"); return View("InvalidOwner");
dinnerRepository.Delete(dinner); dinnerRepository.Delete(dinner);
dinnerRepository.Save(); dinnerRepository.Save();
return View("Deleted"); return View("Deleted");
} }
} }
} }

View file

@ -1,20 +1,20 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
namespace NerdDinner.Controllers { namespace NerdDinner.Controllers {
[HandleError] [HandleError]
public class HomeController : Controller { public class HomeController : Controller {
public ActionResult Index() { public ActionResult Index() {
return View(); return View();
} }
public ActionResult About() { public ActionResult About() {
return View(); return View();
} }
} }
} }

View file

@ -1,45 +1,45 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
using NerdDinner.Models; using NerdDinner.Models;
namespace NerdDinner.Controllers namespace NerdDinner.Controllers
{ {
public class RSVPController : Controller { public class RSVPController : Controller {
IDinnerRepository dinnerRepository; IDinnerRepository dinnerRepository;
// //
// Dependency Injection enabled constructors // Dependency Injection enabled constructors
public RSVPController() public RSVPController()
: this(new DinnerRepository()) { : this(new DinnerRepository()) {
} }
public RSVPController(IDinnerRepository repository) { public RSVPController(IDinnerRepository repository) {
dinnerRepository = repository; dinnerRepository = repository;
} }
// //
// AJAX: /Dinners/Register/1 // AJAX: /Dinners/Register/1
[Authorize, AcceptVerbs(HttpVerbs.Post)] [Authorize, AcceptVerbs(HttpVerbs.Post)]
public ActionResult Register(int id) { public ActionResult Register(int id) {
Dinner dinner = dinnerRepository.GetDinner(id); Dinner dinner = dinnerRepository.GetDinner(id);
if (!dinner.IsUserRegistered(User.Identity.Name)) { if (!dinner.IsUserRegistered(User.Identity.Name)) {
RSVP rsvp = new RSVP(); RSVP rsvp = new RSVP();
rsvp.AttendeeName = User.Identity.Name; rsvp.AttendeeName = User.Identity.Name;
dinner.RSVPs.Add(rsvp); dinner.RSVPs.Add(rsvp);
dinnerRepository.Save(); dinnerRepository.Save();
} }
return Content("Thanks - we'll see you there!"); return Content("Thanks - we'll see you there!");
} }
} }
} }

View file

@ -1,55 +1,55 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
using NerdDinner.Models; using NerdDinner.Models;
namespace NerdDinner.Controllers { namespace NerdDinner.Controllers {
public class JsonDinner { public class JsonDinner {
public int DinnerID { get; set; } public int DinnerID { get; set; }
public string Title { get; set; } public string Title { get; set; }
public double Latitude { get; set; } public double Latitude { get; set; }
public double Longitude { get; set; } public double Longitude { get; set; }
public string Description { get; set; } public string Description { get; set; }
public int RSVPCount { get; set; } public int RSVPCount { get; set; }
} }
public class SearchController : Controller { public class SearchController : Controller {
IDinnerRepository dinnerRepository; IDinnerRepository dinnerRepository;
// //
// Dependency Injection enabled constructors // Dependency Injection enabled constructors
public SearchController() public SearchController()
: this(new DinnerRepository()) { : this(new DinnerRepository()) {
} }
public SearchController(IDinnerRepository repository) { public SearchController(IDinnerRepository repository) {
dinnerRepository = repository; dinnerRepository = repository;
} }
// //
// AJAX: /Search/FindByLocation?longitude=45&latitude=-90 // AJAX: /Search/FindByLocation?longitude=45&latitude=-90
[AcceptVerbs(HttpVerbs.Post)] [AcceptVerbs(HttpVerbs.Post)]
public ActionResult SearchByLocation(float latitude, float longitude) { public ActionResult SearchByLocation(float latitude, float longitude) {
var dinners = dinnerRepository.FindByLocation(latitude, longitude); var dinners = dinnerRepository.FindByLocation(latitude, longitude);
var jsonDinners = from dinner in dinners var jsonDinners = from dinner in dinners
select new JsonDinner { select new JsonDinner {
DinnerID = dinner.DinnerID, DinnerID = dinner.DinnerID,
Latitude = dinner.Latitude, Latitude = dinner.Latitude,
Longitude = dinner.Longitude, Longitude = dinner.Longitude,
Title = dinner.Title, Title = dinner.Title,
Description = dinner.Description, Description = dinner.Description,
RSVPCount = dinner.RSVPs.Count RSVPCount = dinner.RSVPs.Count
}; };
return Json(jsonDinners.ToList()); return Json(jsonDinners.ToList());
} }
} }
} }

View file

@ -1,13 +1,13 @@
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
using System.Web.UI; using System.Web.UI;
namespace NerdDinner { namespace NerdDinner {
public partial class _Default : Page { public partial class _Default : Page {
public void Page_Load(object sender, System.EventArgs e) { public void Page_Load(object sender, System.EventArgs e) {
HttpContext.Current.RewritePath(Request.ApplicationPath, false); HttpContext.Current.RewritePath(Request.ApplicationPath, false);
IHttpHandler httpHandler = new MvcHttpHandler(); IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current); httpHandler.ProcessRequest(HttpContext.Current);
} }
} }
} }

View file

@ -1,37 +1,37 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using System.Web.Mvc; using System.Web.Mvc;
using System.Web.Routing; using System.Web.Routing;
using Dlrsoft.Asp.Mvc; using Dlrsoft.Asp.Mvc;
namespace NerdDinner { namespace NerdDinner {
public class MvcApplication : System.Web.HttpApplication { public class MvcApplication : System.Web.HttpApplication {
public void RegisterRoutes(RouteCollection routes) { public void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute( routes.MapRoute(
"UpcomingDinners", "UpcomingDinners",
"Dinners/Page/{page}", "Dinners/Page/{page}",
new { controller = "Dinners", action = "Index" } new { controller = "Dinners", action = "Index" }
); );
routes.MapRoute( routes.MapRoute(
"Default", // Route name "Default", // Route name
"{controller}/{action}/{id}", // URL with parameters "{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults new { controller = "Home", action = "Index", id = "" } // Parameter defaults
); );
} }
void Application_Start() { void Application_Start() {
RegisterRoutes(RouteTable.Routes); RegisterRoutes(RouteTable.Routes);
ViewEngines.Engines.Clear(); ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new AspViewEngine()); ViewEngines.Engines.Add(new AspViewEngine());
ViewEngines.Engines.Add(new WebFormViewEngine()); ViewEngines.Engines.Add(new WebFormViewEngine());
} }
} }
} }

View file

@ -1,19 +1,19 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using NerdDinner.Models; using NerdDinner.Models;
using System.Web.Mvc; using System.Web.Mvc;
namespace NerdDinner.Helpers { namespace NerdDinner.Helpers {
public static class ModelStateHelpers { public static class ModelStateHelpers {
public static void AddModelErrors(this ModelStateDictionary modelState, IEnumerable<RuleViolation> errors) { public static void AddModelErrors(this ModelStateDictionary modelState, IEnumerable<RuleViolation> errors) {
foreach (RuleViolation issue in errors) { foreach (RuleViolation issue in errors) {
modelState.AddModelError(issue.PropertyName, issue.ErrorMessage); modelState.AddModelError(issue.PropertyName, issue.ErrorMessage);
} }
} }
} }
} }

View file

@ -1,35 +1,35 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace NerdDinner.Helpers { namespace NerdDinner.Helpers {
public class PaginatedList<T> : List<T> { public class PaginatedList<T> : List<T> {
public int PageIndex { get; private set; } public int PageIndex { get; private set; }
public int PageSize { get; private set; } public int PageSize { get; private set; }
public int TotalCount { get; private set; } public int TotalCount { get; private set; }
public int TotalPages { get; private set; } public int TotalPages { get; private set; }
public PaginatedList(IQueryable<T> source, int pageIndex, int pageSize) { public PaginatedList(IQueryable<T> source, int pageIndex, int pageSize) {
PageIndex = pageIndex; PageIndex = pageIndex;
PageSize = pageSize; PageSize = pageSize;
TotalCount = source.Count(); TotalCount = source.Count();
TotalPages = (int) Math.Ceiling(TotalCount / (double)PageSize); TotalPages = (int) Math.Ceiling(TotalCount / (double)PageSize);
this.AddRange(source.Skip(PageIndex * PageSize).Take(PageSize)); this.AddRange(source.Skip(PageIndex * PageSize).Take(PageSize));
} }
public bool HasPreviousPage { public bool HasPreviousPage {
get { get {
return (PageIndex > 0); return (PageIndex > 0);
} }
} }
public bool HasNextPage { public bool HasNextPage {
get { get {
return (PageIndex+1 < TotalPages); return (PageIndex+1 < TotalPages);
} }
} }
} }
} }

View file

@ -1,32 +1,32 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace NerdDinner.Helpers { namespace NerdDinner.Helpers {
public class PhoneValidator { public class PhoneValidator {
static IDictionary<string, Regex> countryRegex = new Dictionary<string, Regex>() static IDictionary<string, Regex> countryRegex = new Dictionary<string, Regex>()
{ {
{ "USA", new Regex("^[2-9]\\d{2}-\\d{3}-\\d{4}$")}, { "USA", new Regex("^[2-9]\\d{2}-\\d{3}-\\d{4}$")},
{ "UK", new Regex("(^1300\\d{6}$)|(^1800|1900|1902\\d{6}$)|(^0[2|3|7|8]{1}[0-9]{8}$)|(^13\\d{4}$)|(^04\\d{2,3}\\d{6}$)")}, { "UK", new Regex("(^1300\\d{6}$)|(^1800|1900|1902\\d{6}$)|(^0[2|3|7|8]{1}[0-9]{8}$)|(^13\\d{4}$)|(^04\\d{2,3}\\d{6}$)")},
{ "Netherlands", new Regex("(^\\+[0-9]{2}|^\\+[0-9]{2}\\(0\\)|^\\(\\+[0-9]{2}\\)\\(0\\)|^00[0-9]{2}|^0)([0-9]{9}$|[0-9\\-\\s]{10}$)")}, { "Netherlands", new Regex("(^\\+[0-9]{2}|^\\+[0-9]{2}\\(0\\)|^\\(\\+[0-9]{2}\\)\\(0\\)|^00[0-9]{2}|^0)([0-9]{9}$|[0-9\\-\\s]{10}$)")},
}; };
public static bool IsValidNumber(string phoneNumber, string country) { public static bool IsValidNumber(string phoneNumber, string country) {
if (country != null && countryRegex.ContainsKey(country)) if (country != null && countryRegex.ContainsKey(country))
return countryRegex[country].IsMatch(phoneNumber); return countryRegex[country].IsMatch(phoneNumber);
else else
return false; return false;
} }
public static IEnumerable<string> Countries { public static IEnumerable<string> Countries {
get { get {
return countryRegex.Keys; return countryRegex.Keys;
} }
} }
} }
} }

View file

@ -1,56 +1,56 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Data.Linq; using System.Data.Linq;
using System.Web.Mvc; using System.Web.Mvc;
using NerdDinner.Helpers; using NerdDinner.Helpers;
namespace NerdDinner.Models { namespace NerdDinner.Models {
[Bind(Include="Title,Description,EventDate,Address,Country,ContactPhone,Latitude,Longitude")] [Bind(Include="Title,Description,EventDate,Address,Country,ContactPhone,Latitude,Longitude")]
public partial class Dinner { public partial class Dinner {
public bool IsHostedBy(string userName) { public bool IsHostedBy(string userName) {
return HostedBy.Equals(userName, StringComparison.InvariantCultureIgnoreCase); return HostedBy.Equals(userName, StringComparison.InvariantCultureIgnoreCase);
} }
public bool IsUserRegistered(string userName) { public bool IsUserRegistered(string userName) {
return RSVPs.Any(r => r.AttendeeName.Equals(userName, StringComparison.InvariantCultureIgnoreCase)); return RSVPs.Any(r => r.AttendeeName.Equals(userName, StringComparison.InvariantCultureIgnoreCase));
} }
public bool IsValid { public bool IsValid {
get { return (GetRuleViolations().Count() == 0); } get { return (GetRuleViolations().Count() == 0); }
} }
public IEnumerable<RuleViolation> GetRuleViolations() { public IEnumerable<RuleViolation> GetRuleViolations() {
if (String.IsNullOrEmpty(Title)) if (String.IsNullOrEmpty(Title))
yield return new RuleViolation("Title is required", "Title"); yield return new RuleViolation("Title is required", "Title");
if (String.IsNullOrEmpty(Description)) if (String.IsNullOrEmpty(Description))
yield return new RuleViolation("Description is required", "Description"); yield return new RuleViolation("Description is required", "Description");
if (String.IsNullOrEmpty(HostedBy)) if (String.IsNullOrEmpty(HostedBy))
yield return new RuleViolation("HostedBy is required", "HostedBy"); yield return new RuleViolation("HostedBy is required", "HostedBy");
if (String.IsNullOrEmpty(Address)) if (String.IsNullOrEmpty(Address))
yield return new RuleViolation("Address is required", "Address"); yield return new RuleViolation("Address is required", "Address");
if (String.IsNullOrEmpty(Country)) if (String.IsNullOrEmpty(Country))
yield return new RuleViolation("Country is required", "Address"); yield return new RuleViolation("Country is required", "Address");
if (String.IsNullOrEmpty(ContactPhone)) if (String.IsNullOrEmpty(ContactPhone))
yield return new RuleViolation("Phone# is required", "ContactPhone"); yield return new RuleViolation("Phone# is required", "ContactPhone");
if (!PhoneValidator.IsValidNumber(ContactPhone, Country)) if (!PhoneValidator.IsValidNumber(ContactPhone, Country))
yield return new RuleViolation("Phone# does not match country", "ContactPhone"); yield return new RuleViolation("Phone# does not match country", "ContactPhone");
yield break; yield break;
} }
partial void OnValidate(ChangeAction action) { partial void OnValidate(ChangeAction action) {
if (!IsValid) if (!IsValid)
throw new ApplicationException("Rule violations prevent saving"); throw new ApplicationException("Rule violations prevent saving");
} }
} }
} }

View file

@ -1,58 +1,58 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
namespace NerdDinner.Models { namespace NerdDinner.Models {
public class DinnerRepository : NerdDinner.Models.IDinnerRepository { public class DinnerRepository : NerdDinner.Models.IDinnerRepository {
NerdDinnerDataContext db = new NerdDinnerDataContext(); NerdDinnerDataContext db = new NerdDinnerDataContext();
// //
// Query Methods // Query Methods
public IQueryable<Dinner> FindAllDinners() { public IQueryable<Dinner> FindAllDinners() {
return db.Dinners; return db.Dinners;
} }
public IQueryable<Dinner> FindUpcomingDinners() { public IQueryable<Dinner> FindUpcomingDinners() {
return from dinner in FindAllDinners() return from dinner in FindAllDinners()
where dinner.EventDate > DateTime.Now where dinner.EventDate > DateTime.Now
orderby dinner.EventDate orderby dinner.EventDate
select dinner; select dinner;
} }
public IQueryable<Dinner> FindByLocation(float latitude, float longitude) { public IQueryable<Dinner> FindByLocation(float latitude, float longitude) {
var dinners = from dinner in FindUpcomingDinners() var dinners = from dinner in FindUpcomingDinners()
join i in db.NearestDinners(latitude, longitude) join i in db.NearestDinners(latitude, longitude)
on dinner.DinnerID equals i.DinnerID on dinner.DinnerID equals i.DinnerID
select dinner; select dinner;
return dinners; return dinners;
} }
public Dinner GetDinner(int id) { public Dinner GetDinner(int id) {
return db.Dinners.SingleOrDefault(d => d.DinnerID == id); return db.Dinners.SingleOrDefault(d => d.DinnerID == id);
} }
// //
// Insert/Delete Methods // Insert/Delete Methods
public void Add(Dinner dinner) { public void Add(Dinner dinner) {
db.Dinners.InsertOnSubmit(dinner); db.Dinners.InsertOnSubmit(dinner);
} }
public void Delete(Dinner dinner) { public void Delete(Dinner dinner) {
db.RSVPs.DeleteAllOnSubmit(dinner.RSVPs); db.RSVPs.DeleteAllOnSubmit(dinner.RSVPs);
db.Dinners.DeleteOnSubmit(dinner); db.Dinners.DeleteOnSubmit(dinner);
} }
// //
// Persistence // Persistence
public void Save() { public void Save() {
db.SubmitChanges(); db.SubmitChanges();
} }
} }
} }

View file

@ -1,18 +1,18 @@
using System; using System;
using System.Linq; using System.Linq;
namespace NerdDinner.Models { namespace NerdDinner.Models {
public interface IDinnerRepository { public interface IDinnerRepository {
IQueryable<Dinner> FindAllDinners(); IQueryable<Dinner> FindAllDinners();
IQueryable<Dinner> FindByLocation(float latitude, float longitude); IQueryable<Dinner> FindByLocation(float latitude, float longitude);
IQueryable<Dinner> FindUpcomingDinners(); IQueryable<Dinner> FindUpcomingDinners();
Dinner GetDinner(int id); Dinner GetDinner(int id);
void Add(Dinner dinner); void Add(Dinner dinner);
void Delete(Dinner dinner); void Delete(Dinner dinner);
void Save(); void Save();
} }
} }

File diff suppressed because it is too large Load diff

View file

@ -1,22 +1,22 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Web; using System.Web;
namespace NerdDinner.Models { namespace NerdDinner.Models {
public class RuleViolation { public class RuleViolation {
public string ErrorMessage { get; private set; } public string ErrorMessage { get; private set; }
public string PropertyName { get; private set; } public string PropertyName { get; private set; }
public RuleViolation(string errorMessage) { public RuleViolation(string errorMessage) {
ErrorMessage = errorMessage; ErrorMessage = errorMessage;
} }
public RuleViolation(string errorMessage, string propertyName) { public RuleViolation(string errorMessage, string propertyName) {
ErrorMessage = errorMessage; ErrorMessage = errorMessage;
PropertyName = propertyName; PropertyName = propertyName;
} }
} }
} }

View file

@ -1,215 +1,215 @@
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion> <ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{328C148C-DBEE-41A4-B1C7-104CBB216556}</ProjectGuid> <ProjectGuid>{328C148C-DBEE-41A4-B1C7-104CBB216556}</ProjectGuid>
<ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> <ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NerdDinner</RootNamespace> <RootNamespace>NerdDinner</RootNamespace>
<AssemblyName>NerdDinner</AssemblyName> <AssemblyName>NerdDinner</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews> <MvcBuildViews>false</MvcBuildViews>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>bin\</OutputPath> <OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\</OutputPath> <OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath> <OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget> <PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\x86\Release\</OutputPath> <OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget> <PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="Dlrsoft.Asp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Dlrsoft.Asp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\asp\bin\Release\Dlrsoft.Asp.dll</HintPath> <HintPath>..\asp\bin\Release\Dlrsoft.Asp.dll</HintPath>
</Reference> </Reference>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Data" /> <Reference Include="System.Data" />
<Reference Include="System.Core"> <Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Data.DataSetExtensions"> <Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Data.Linq"> <Reference Include="System.Data.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <Reference Include="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Abstractions.dll</HintPath> <HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Abstractions.dll</HintPath>
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Mvc.dll</HintPath> <HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Mvc.dll</HintPath>
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<Private>True</Private> <Private>True</Private>
</Reference> </Reference>
<Reference Include="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <Reference Include="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Routing.dll</HintPath> <HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies\System.Web.Routing.dll</HintPath>
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Xml.Linq"> <Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference> </Reference>
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Web" /> <Reference Include="System.Web" />
<Reference Include="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> <Reference Include="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
<Reference Include="System.Configuration" /> <Reference Include="System.Configuration" />
<Reference Include="System.Web.Services" /> <Reference Include="System.Web.Services" />
<Reference Include="System.EnterpriseServices" /> <Reference Include="System.EnterpriseServices" />
<Reference Include="System.Web.Mobile" /> <Reference Include="System.Web.Mobile" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Controllers\AccountController.cs" /> <Compile Include="Controllers\AccountController.cs" />
<Compile Include="Controllers\DinnersController.cs" /> <Compile Include="Controllers\DinnersController.cs" />
<Compile Include="Controllers\HomeController.cs" /> <Compile Include="Controllers\HomeController.cs" />
<Compile Include="Controllers\SearchController.cs" /> <Compile Include="Controllers\SearchController.cs" />
<Compile Include="Controllers\RSVPController.cs"> <Compile Include="Controllers\RSVPController.cs">
<SubType>Code</SubType> <SubType>Code</SubType>
</Compile> </Compile>
<Compile Include="Default.aspx.cs"> <Compile Include="Default.aspx.cs">
<DependentUpon>Default.aspx</DependentUpon> <DependentUpon>Default.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>
</Compile> </Compile>
<Compile Include="Global.asax.cs"> <Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon> <DependentUpon>Global.asax</DependentUpon>
</Compile> </Compile>
<Compile Include="Helpers\ControllerHelpers.cs" /> <Compile Include="Helpers\ControllerHelpers.cs" />
<Compile Include="Helpers\PaginatedList.cs" /> <Compile Include="Helpers\PaginatedList.cs" />
<Compile Include="Helpers\PhoneValidator.cs" /> <Compile Include="Helpers\PhoneValidator.cs" />
<Compile Include="Models\Dinner.cs" /> <Compile Include="Models\Dinner.cs" />
<Compile Include="Models\DinnerRepository.cs" /> <Compile Include="Models\DinnerRepository.cs" />
<Compile Include="Models\IDinnerRepository.cs" /> <Compile Include="Models\IDinnerRepository.cs" />
<Compile Include="Models\NerdDinner.designer.cs"> <Compile Include="Models\NerdDinner.designer.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>
<DependentUpon>NerdDinner.dbml</DependentUpon> <DependentUpon>NerdDinner.dbml</DependentUpon>
</Compile> </Compile>
<Compile Include="Models\RuleViolation.cs" /> <Compile Include="Models\RuleViolation.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="App_Data\NerdDinner.mdf"> <Content Include="App_Data\NerdDinner.mdf">
</Content> </Content>
<Content Include="App_Data\NerdDinner_log.ldf"> <Content Include="App_Data\NerdDinner_log.ldf">
<DependentUpon>NerdDinner.mdf</DependentUpon> <DependentUpon>NerdDinner.mdf</DependentUpon>
</Content> </Content>
<Content Include="Content\nerd.jpg" /> <Content Include="Content\nerd.jpg" />
<Content Include="Default.aspx" /> <Content Include="Default.aspx" />
<Content Include="Global.asax" /> <Content Include="Global.asax" />
<Content Include="Scripts\Map.js" /> <Content Include="Scripts\Map.js" />
<None Include="Views\Dinners\DinnerForm.asc" /> <None Include="Views\Dinners\DinnerForm.asc" />
<None Include="Views\Dinners\DinnerForm.ascx.bak" /> <None Include="Views\Dinners\DinnerForm.ascx.bak" />
<None Include="Views\Dinners\EditAndDeleteLinks.asc" /> <None Include="Views\Dinners\EditAndDeleteLinks.asc" />
<None Include="Views\Dinners\EditAndDeleteLinks.ascx.bak" /> <None Include="Views\Dinners\EditAndDeleteLinks.ascx.bak" />
<None Include="Views\Dinners\RSVPStatus.asc" /> <None Include="Views\Dinners\RSVPStatus.asc" />
<Content Include="Views\Dinners\Map.asp" /> <Content Include="Views\Dinners\Map.asp" />
<Content Include="Views\Dinners\Index.asp" /> <Content Include="Views\Dinners\Index.asp" />
<None Include="Views\Dinners\RSVPStatus.ascx.bak"> <None Include="Views\Dinners\RSVPStatus.ascx.bak">
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>
</None> </None>
<None Include="Views\Dinners\Map.ascx.bak" /> <None Include="Views\Dinners\Map.ascx.bak" />
<Content Include="Views\Dinners\Edit.asp" /> <Content Include="Views\Dinners\Edit.asp" />
<Content Include="Views\Dinners\Create.asp" /> <Content Include="Views\Dinners\Create.asp" />
<Content Include="Views\Dinners\Details.asp" /> <Content Include="Views\Dinners\Details.asp" />
<Content Include="Views\Dinners\Delete.asp" /> <Content Include="Views\Dinners\Delete.asp" />
<Content Include="Views\Dinners\InvalidOwner.asp" /> <Content Include="Views\Dinners\InvalidOwner.asp" />
<Content Include="Views\Dinners\NotFound.asp" /> <Content Include="Views\Dinners\NotFound.asp" />
<Content Include="Views\Dinners\Deleted.asp" /> <Content Include="Views\Dinners\Deleted.asp" />
<Content Include="Views\Home\Index.asp" /> <Content Include="Views\Home\Index.asp" />
<Content Include="Views\Home\About.asp" /> <Content Include="Views\Home\About.asp" />
<Content Include="Views\Shared\header.asp" /> <Content Include="Views\Shared\header.asp" />
<Content Include="Views\Shared\template.asp" /> <Content Include="Views\Shared\template.asp" />
<Content Include="Web.config" /> <Content Include="Web.config" />
<Content Include="Content\Site.css" /> <Content Include="Content\Site.css" />
<Content Include="Scripts\jquery-1.2.6.js" /> <Content Include="Scripts\jquery-1.2.6.js" />
<Content Include="Scripts\jquery-1.2.6.min.js" /> <Content Include="Scripts\jquery-1.2.6.min.js" />
<Content Include="Scripts\jquery-1.2.6-vsdoc.js" /> <Content Include="Scripts\jquery-1.2.6-vsdoc.js" />
<Content Include="Scripts\jquery-1.2.6.min-vsdoc.js" /> <Content Include="Scripts\jquery-1.2.6.min-vsdoc.js" />
<Content Include="Scripts\MicrosoftAjax.js" /> <Content Include="Scripts\MicrosoftAjax.js" />
<Content Include="Scripts\MicrosoftAjax.debug.js" /> <Content Include="Scripts\MicrosoftAjax.debug.js" />
<Content Include="Scripts\MicrosoftMvcAjax.js" /> <Content Include="Scripts\MicrosoftMvcAjax.js" />
<Content Include="Scripts\MicrosoftMvcAjax.debug.js" /> <Content Include="Scripts\MicrosoftMvcAjax.debug.js" />
<Content Include="Views\Account\ChangePassword.aspx" /> <Content Include="Views\Account\ChangePassword.aspx" />
<Content Include="Views\Account\ChangePasswordSuccess.aspx" /> <Content Include="Views\Account\ChangePasswordSuccess.aspx" />
<Content Include="Views\Account\LogOn.aspx" /> <Content Include="Views\Account\LogOn.aspx" />
<Content Include="Views\Account\Register.aspx" /> <Content Include="Views\Account\Register.aspx" />
<Content Include="Views\Shared\Error.aspx" /> <Content Include="Views\Shared\Error.aspx" />
<Content Include="Views\Shared\LoginStatus.ascx" /> <Content Include="Views\Shared\LoginStatus.ascx" />
<Content Include="Views\Shared\Site.Master" /> <Content Include="Views\Shared\Site.Master" />
<Content Include="Views\Web.config" /> <Content Include="Views\Web.config" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Models\NerdDinner.dbml"> <None Include="Models\NerdDinner.dbml">
<Generator>MSLinqToSQLGenerator</Generator> <Generator>MSLinqToSQLGenerator</Generator>
<LastGenOutput>NerdDinner.designer.cs</LastGenOutput> <LastGenOutput>NerdDinner.designer.cs</LastGenOutput>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</None> </None>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" /> <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Models\NerdDinner.dbml.layout"> <None Include="Models\NerdDinner.dbml.layout">
<DependentUpon>NerdDinner.dbml</DependentUpon> <DependentUpon>NerdDinner.dbml</DependentUpon>
</None> </None>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" /> <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild"> <Target Name="BeforeBuild">
</Target> --> </Target> -->
<Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'"> <Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" /> <AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
</Target> </Target>
<ProjectExtensions> <ProjectExtensions>
<VisualStudio> <VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties> <WebProjectProperties>
<UseIIS>False</UseIIS> <UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort> <AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>60848</DevelopmentServerPort> <DevelopmentServerPort>60848</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath> <DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl> <IISUrl>
</IISUrl> </IISUrl>
<NTLMAuthentication>False</NTLMAuthentication> <NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer> <UseCustomServer>False</UseCustomServer>
<CustomServerUrl> <CustomServerUrl>
</CustomServerUrl> </CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties> </WebProjectProperties>
</FlavorProperties> </FlavorProperties>
</VisualStudio> </VisualStudio>
</ProjectExtensions> </ProjectExtensions>
</Project> </Project>

View file

@ -1,35 +1,35 @@
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following // General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("NerdDinner")] [assembly: AssemblyTitle("NerdDinner")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NerdDinner")] [assembly: AssemblyProduct("NerdDinner")]
[assembly: AssemblyCopyright("Copyright © 2009")] [assembly: AssemblyCopyright("Copyright © 2009")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible // Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from // to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type. // COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)] [assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM // The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("3f961952-a5a3-4ca2-bc29-5b46b500177d")] [assembly: Guid("3f961952-a5a3-4ca2-bc29-5b46b500177d")]
// Version information for an assembly consists of the following four values: // Version information for an assembly consists of the following four values:
// //
// Major Version // Major Version
// Minor Version // Minor Version
// Build Number // Build Number
// Revision // Revision
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.5.2.32072")] [assembly: AssemblyFileVersion("0.5.2.32072")]

View file

@ -1,138 +1,138 @@
/// <reference path="jquery-1.2.6.js" /> /// <reference path="jquery-1.2.6.js" />
var map = null; var map = null;
var points = []; var points = [];
var shapes = []; var shapes = [];
var center = null; var center = null;
function LoadMap(latitude, longitude, onMapLoaded) { function LoadMap(latitude, longitude, onMapLoaded) {
map = new VEMap('theMap'); map = new VEMap('theMap');
options = new VEMapOptions(); options = new VEMapOptions();
options.EnableBirdseye = false; options.EnableBirdseye = false;
// Makes the control bar less obtrusize. // Makes the control bar less obtrusize.
map.SetDashboardSize(VEDashboardSize.Small); map.SetDashboardSize(VEDashboardSize.Small);
if (onMapLoaded != null) if (onMapLoaded != null)
map.onLoadMap = onMapLoaded; map.onLoadMap = onMapLoaded;
if (latitude != null && longitude != null) { if (latitude != null && longitude != null) {
center = new VELatLong(latitude, longitude); center = new VELatLong(latitude, longitude);
} }
map.LoadMap(center, null, null, null, null, null, null, options); map.LoadMap(center, null, null, null, null, null, null, options);
} }
function LoadPin(LL, name, description) { function LoadPin(LL, name, description) {
var shape = new VEShape(VEShapeType.Pushpin, LL); var shape = new VEShape(VEShapeType.Pushpin, LL);
//Make a nice Pushpin shape with a title and description //Make a nice Pushpin shape with a title and description
shape.SetTitle("<span class=\"pinTitle\"> " + escape(name) + "</span>"); shape.SetTitle("<span class=\"pinTitle\"> " + escape(name) + "</span>");
if (description !== undefined) { if (description !== undefined) {
shape.SetDescription("<p class=\"pinDetails\">" + shape.SetDescription("<p class=\"pinDetails\">" +
escape(description) + "</p>"); escape(description) + "</p>");
} }
map.AddShape(shape); map.AddShape(shape);
points.push(LL); points.push(LL);
shapes.push(shape); shapes.push(shape);
} }
function FindAddressOnMap(where) { function FindAddressOnMap(where) {
var numberOfResults = 20; var numberOfResults = 20;
var setBestMapView = true; var setBestMapView = true;
var showResults = true; var showResults = true;
map.Find("", where, null, null, null, map.Find("", where, null, null, null,
numberOfResults, showResults, true, true, numberOfResults, showResults, true, true,
setBestMapView, callbackForLocation); setBestMapView, callbackForLocation);
} }
function callbackForLocation(layer, resultsArray, places, function callbackForLocation(layer, resultsArray, places,
hasMore, VEErrorMessage) { hasMore, VEErrorMessage) {
clearMap(); clearMap();
if (places == null) if (places == null)
return; return;
//Make a pushpin for each place we find //Make a pushpin for each place we find
$.each(places, function(i, item) { $.each(places, function(i, item) {
var description = ""; var description = "";
if (item.Description !== undefined) { if (item.Description !== undefined) {
description = item.Description; description = item.Description;
} }
var LL = new VELatLong(item.LatLong.Latitude, var LL = new VELatLong(item.LatLong.Latitude,
item.LatLong.Longitude); item.LatLong.Longitude);
LoadPin(LL, item.Name, description); LoadPin(LL, item.Name, description);
}); });
//Make sure all pushpins are visible //Make sure all pushpins are visible
if (points.length > 1) { if (points.length > 1) {
map.SetMapView(points); map.SetMapView(points);
} }
//If we've found exactly one place, that's our address. //If we've found exactly one place, that's our address.
if (points.length === 1) { if (points.length === 1) {
$("#Latitude").val(points[0].Latitude); $("#Latitude").val(points[0].Latitude);
$("#Longitude").val(points[0].Longitude); $("#Longitude").val(points[0].Longitude);
} }
} }
function clearMap() { function clearMap() {
map.Clear(); map.Clear();
points = []; points = [];
shapes = []; shapes = [];
} }
function FindDinnersGivenLocation(where) { function FindDinnersGivenLocation(where) {
map.Find("", where, null, null, null, null, null, false, map.Find("", where, null, null, null, null, null, false,
null, null, callbackUpdateMapDinners); null, null, callbackUpdateMapDinners);
} }
function callbackUpdateMapDinners(layer, resultsArray, places, hasMore, VEErrorMessage) { function callbackUpdateMapDinners(layer, resultsArray, places, hasMore, VEErrorMessage) {
$("#dinnerList").empty(); $("#dinnerList").empty();
clearMap(); clearMap();
var center = map.GetCenter(); var center = map.GetCenter();
$.post("/Search/SearchByLocation", { latitude: center.Latitude, $.post("/Search/SearchByLocation", { latitude: center.Latitude,
longitude: center.Longitude longitude: center.Longitude
}, function(dinners) { }, function(dinners) {
$.each(dinners, function(i, dinner) { $.each(dinners, function(i, dinner) {
var LL = new VELatLong(dinner.Latitude, dinner.Longitude, 0, null); var LL = new VELatLong(dinner.Latitude, dinner.Longitude, 0, null);
var RsvpMessage = ""; var RsvpMessage = "";
if (dinner.RSVPCount == 1) if (dinner.RSVPCount == 1)
RsvpMessage = "" + dinner.RSVPCount + " RSVP"; RsvpMessage = "" + dinner.RSVPCount + " RSVP";
else else
RsvpMessage = "" + dinner.RSVPCount + " RSVPs"; RsvpMessage = "" + dinner.RSVPCount + " RSVPs";
// Add Pin to Map // Add Pin to Map
LoadPin(LL, '<a href="/Dinners/Details/' + dinner.DinnerID + '">' LoadPin(LL, '<a href="/Dinners/Details/' + dinner.DinnerID + '">'
+ dinner.Title + '</a>', + dinner.Title + '</a>',
"<p>" + dinner.Description + "</p>" + RsvpMessage); "<p>" + dinner.Description + "</p>" + RsvpMessage);
//Add a dinner to the <ul> dinnerList on the right //Add a dinner to the <ul> dinnerList on the right
$('#dinnerList').append($('<li/>') $('#dinnerList').append($('<li/>')
.attr("class", "dinnerItem") .attr("class", "dinnerItem")
.append($('<a/>').attr("href", .append($('<a/>').attr("href",
"/Dinners/Details/" + dinner.DinnerID) "/Dinners/Details/" + dinner.DinnerID)
.html(dinner.Title)).append(" ("+RsvpMessage+")")); .html(dinner.Title)).append(" ("+RsvpMessage+")"));
}); });
// Adjust zoom to display all the pins we just added. // Adjust zoom to display all the pins we just added.
if (points.length > 1) { if (points.length > 1) {
map.SetMapView(points); map.SetMapView(points);
} }
// Display the event's pin-bubble on hover. // Display the event's pin-bubble on hover.
$(".dinnerItem").each(function(i, dinner) { $(".dinnerItem").each(function(i, dinner) {
$(dinner).hover( $(dinner).hover(
function() { map.ShowInfoBox(shapes[i]); }, function() { map.ShowInfoBox(shapes[i]); },
function() { map.HideInfoBox(shapes[i]); } function() { map.HideInfoBox(shapes[i]); }
); );
}); });
}, "json"); }, "json");
} }

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,337 +1,337 @@
//---------------------------------------------------------- //----------------------------------------------------------
// Copyright (C) Microsoft Corporation. All rights reserved. // Copyright (C) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------- //----------------------------------------------------------
// MicrosoftMvcAjax.js // MicrosoftMvcAjax.js
Type.registerNamespace('Sys.Mvc'); Type.registerNamespace('Sys.Mvc');
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxOptions // Sys.Mvc.AjaxOptions
Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; } Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.InsertionMode // Sys.Mvc.InsertionMode
Sys.Mvc.InsertionMode = function() { Sys.Mvc.InsertionMode = function() {
/// <field name="replace" type="Number" integer="true" static="true"> /// <field name="replace" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertBefore" type="Number" integer="true" static="true"> /// <field name="insertBefore" type="Number" integer="true" static="true">
/// </field> /// </field>
/// <field name="insertAfter" type="Number" integer="true" static="true"> /// <field name="insertAfter" type="Number" integer="true" static="true">
/// </field> /// </field>
}; };
Sys.Mvc.InsertionMode.prototype = { Sys.Mvc.InsertionMode.prototype = {
replace: 0, replace: 0,
insertBefore: 1, insertBefore: 1,
insertAfter: 2 insertAfter: 2
} }
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false);
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AjaxContext // Sys.Mvc.AjaxContext
Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) { Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="updateTarget" type="Object" domElement="true"> /// <param name="updateTarget" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="loadingElement" type="Object" domElement="true"> /// <param name="loadingElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <field name="_insertionMode" type="Sys.Mvc.InsertionMode"> /// <field name="_insertionMode" type="Sys.Mvc.InsertionMode">
/// </field> /// </field>
/// <field name="_loadingElement" type="Object" domElement="true"> /// <field name="_loadingElement" type="Object" domElement="true">
/// </field> /// </field>
/// <field name="_response" type="Sys.Net.WebRequestExecutor"> /// <field name="_response" type="Sys.Net.WebRequestExecutor">
/// </field> /// </field>
/// <field name="_request" type="Sys.Net.WebRequest"> /// <field name="_request" type="Sys.Net.WebRequest">
/// </field> /// </field>
/// <field name="_updateTarget" type="Object" domElement="true"> /// <field name="_updateTarget" type="Object" domElement="true">
/// </field> /// </field>
this._request = request; this._request = request;
this._updateTarget = updateTarget; this._updateTarget = updateTarget;
this._loadingElement = loadingElement; this._loadingElement = loadingElement;
this._insertionMode = insertionMode; this._insertionMode = insertionMode;
} }
Sys.Mvc.AjaxContext.prototype = { Sys.Mvc.AjaxContext.prototype = {
_insertionMode: 0, _insertionMode: 0,
_loadingElement: null, _loadingElement: null,
_response: null, _response: null,
_request: null, _request: null,
_updateTarget: null, _updateTarget: null,
get_data: function Sys_Mvc_AjaxContext$get_data() { get_data: function Sys_Mvc_AjaxContext$get_data() {
/// <value type="String"></value> /// <value type="String"></value>
if (this._response) { if (this._response) {
return this._response.get_responseData(); return this._response.get_responseData();
} }
else { else {
return null; return null;
} }
}, },
get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() { get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() {
/// <value type="Sys.Mvc.InsertionMode"></value> /// <value type="Sys.Mvc.InsertionMode"></value>
return this._insertionMode; return this._insertionMode;
}, },
get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() { get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._loadingElement; return this._loadingElement;
}, },
get_response: function Sys_Mvc_AjaxContext$get_response() { get_response: function Sys_Mvc_AjaxContext$get_response() {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
return this._response; return this._response;
}, },
set_response: function Sys_Mvc_AjaxContext$set_response(value) { set_response: function Sys_Mvc_AjaxContext$set_response(value) {
/// <value type="Sys.Net.WebRequestExecutor"></value> /// <value type="Sys.Net.WebRequestExecutor"></value>
this._response = value; this._response = value;
return value; return value;
}, },
get_request: function Sys_Mvc_AjaxContext$get_request() { get_request: function Sys_Mvc_AjaxContext$get_request() {
/// <value type="Sys.Net.WebRequest"></value> /// <value type="Sys.Net.WebRequest"></value>
return this._request; return this._request;
}, },
get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() { get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() {
/// <value type="Object" domElement="true"></value> /// <value type="Object" domElement="true"></value>
return this._updateTarget; return this._updateTarget;
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncHyperlink // Sys.Mvc.AsyncHyperlink
Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() { Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() {
} }
Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) { Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) {
/// <param name="anchor" type="Object" domElement="true"> /// <param name="anchor" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions);
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.MvcHelpers // Sys.Mvc.MvcHelpers
Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() { Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() {
} }
Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) { Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <returns type="String"></returns> /// <returns type="String"></returns>
var formElements = form.elements; var formElements = form.elements;
var formBody = new Sys.StringBuilder(); var formBody = new Sys.StringBuilder();
var count = formElements.length; var count = formElements.length;
for (var i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
var element = formElements[i]; var element = formElements[i];
var name = element.name; var name = element.name;
if (!name || !name.length) { if (!name || !name.length) {
continue; continue;
} }
var tagName = element.tagName.toUpperCase(); var tagName = element.tagName.toUpperCase();
if (tagName === 'INPUT') { if (tagName === 'INPUT') {
var inputElement = element; var inputElement = element;
var type = inputElement.type; var type = inputElement.type;
if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) { if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(inputElement.value)); formBody.append(encodeURIComponent(inputElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
else if (tagName === 'SELECT') { else if (tagName === 'SELECT') {
var selectElement = element; var selectElement = element;
var optionCount = selectElement.options.length; var optionCount = selectElement.options.length;
for (var j = 0; j < optionCount; j++) { for (var j = 0; j < optionCount; j++) {
var optionElement = selectElement.options[j]; var optionElement = selectElement.options[j];
if (optionElement.selected) { if (optionElement.selected) {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent(optionElement.value)); formBody.append(encodeURIComponent(optionElement.value));
formBody.append('&'); formBody.append('&');
} }
} }
} }
else if (tagName === 'TEXTAREA') { else if (tagName === 'TEXTAREA') {
formBody.append(encodeURIComponent(name)); formBody.append(encodeURIComponent(name));
formBody.append('='); formBody.append('=');
formBody.append(encodeURIComponent((element.value))); formBody.append(encodeURIComponent((element.value)));
formBody.append('&'); formBody.append('&');
} }
} }
return formBody.toString(); return formBody.toString();
} }
Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) { Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) {
/// <param name="url" type="String"> /// <param name="url" type="String">
/// </param> /// </param>
/// <param name="verb" type="String"> /// <param name="verb" type="String">
/// </param> /// </param>
/// <param name="body" type="String"> /// <param name="body" type="String">
/// </param> /// </param>
/// <param name="triggerElement" type="Object" domElement="true"> /// <param name="triggerElement" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
if (ajaxOptions.confirm) { if (ajaxOptions.confirm) {
if (!confirm(ajaxOptions.confirm)) { if (!confirm(ajaxOptions.confirm)) {
return; return;
} }
} }
if (ajaxOptions.url) { if (ajaxOptions.url) {
url = ajaxOptions.url; url = ajaxOptions.url;
} }
if (ajaxOptions.httpMethod) { if (ajaxOptions.httpMethod) {
verb = ajaxOptions.httpMethod; verb = ajaxOptions.httpMethod;
} }
if (body.length > 0 && !body.endsWith('&')) { if (body.length > 0 && !body.endsWith('&')) {
body += '&'; body += '&';
} }
body += 'X-Requested-With=XMLHttpRequest'; body += 'X-Requested-With=XMLHttpRequest';
var requestBody = ''; var requestBody = '';
if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') { if (verb.toUpperCase() === 'GET' || verb.toUpperCase() === 'DELETE') {
if (url.indexOf('?') > -1) { if (url.indexOf('?') > -1) {
if (!url.endsWith('&')) { if (!url.endsWith('&')) {
url += '&'; url += '&';
} }
url += body; url += body;
} }
else { else {
url += '?'; url += '?';
url += body; url += body;
} }
} }
else { else {
requestBody = body; requestBody = body;
} }
var request = new Sys.Net.WebRequest(); var request = new Sys.Net.WebRequest();
request.set_url(url); request.set_url(url);
request.set_httpVerb(verb); request.set_httpVerb(verb);
request.set_body(requestBody); request.set_body(requestBody);
if (verb.toUpperCase() === 'PUT') { if (verb.toUpperCase() === 'PUT') {
request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;';
} }
request.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; request.get_headers()['X-Requested-With'] = 'XMLHttpRequest';
var updateElement = null; var updateElement = null;
if (ajaxOptions.updateTargetId) { if (ajaxOptions.updateTargetId) {
updateElement = $get(ajaxOptions.updateTargetId); updateElement = $get(ajaxOptions.updateTargetId);
} }
var loadingElement = null; var loadingElement = null;
if (ajaxOptions.loadingElementId) { if (ajaxOptions.loadingElementId) {
loadingElement = $get(ajaxOptions.loadingElementId); loadingElement = $get(ajaxOptions.loadingElementId);
} }
var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode); var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode);
var continueRequest = true; var continueRequest = true;
if (ajaxOptions.onBegin) { if (ajaxOptions.onBegin) {
continueRequest = ajaxOptions.onBegin(ajaxContext) !== false; continueRequest = ajaxOptions.onBegin(ajaxContext) !== false;
} }
if (loadingElement) { if (loadingElement) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true);
} }
if (continueRequest) { if (continueRequest) {
request.add_completed(Function.createDelegate(null, function(executor) { request.add_completed(Function.createDelegate(null, function(executor) {
Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext); Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext);
})); }));
request.invoke(); request.invoke();
} }
} }
Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) { Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) {
/// <param name="request" type="Sys.Net.WebRequest"> /// <param name="request" type="Sys.Net.WebRequest">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
/// <param name="ajaxContext" type="Sys.Mvc.AjaxContext"> /// <param name="ajaxContext" type="Sys.Mvc.AjaxContext">
/// </param> /// </param>
ajaxContext.set_response(request.get_executor()); ajaxContext.set_response(request.get_executor());
if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) { if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) {
return; return;
} }
var statusCode = ajaxContext.get_response().get_statusCode(); var statusCode = ajaxContext.get_response().get_statusCode();
if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) { if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) {
if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) { if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) {
var contentType = ajaxContext.get_response().getResponseHeader('Content-Type'); var contentType = ajaxContext.get_response().getResponseHeader('Content-Type');
if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) { if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) {
eval(ajaxContext.get_data()); eval(ajaxContext.get_data());
} }
else { else {
Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data()); Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data());
} }
} }
if (ajaxOptions.onSuccess) { if (ajaxOptions.onSuccess) {
ajaxOptions.onSuccess(ajaxContext); ajaxOptions.onSuccess(ajaxContext);
} }
} }
else { else {
if (ajaxOptions.onFailure) { if (ajaxOptions.onFailure) {
ajaxOptions.onFailure(ajaxContext); ajaxOptions.onFailure(ajaxContext);
} }
} }
if (ajaxContext.get_loadingElement()) { if (ajaxContext.get_loadingElement()) {
Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false); Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false);
} }
} }
Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) { Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) {
/// <param name="target" type="Object" domElement="true"> /// <param name="target" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="insertionMode" type="Sys.Mvc.InsertionMode"> /// <param name="insertionMode" type="Sys.Mvc.InsertionMode">
/// </param> /// </param>
/// <param name="content" type="String"> /// <param name="content" type="String">
/// </param> /// </param>
if (target) { if (target) {
switch (insertionMode) { switch (insertionMode) {
case Sys.Mvc.InsertionMode.replace: case Sys.Mvc.InsertionMode.replace:
target.innerHTML = content; target.innerHTML = content;
break; break;
case Sys.Mvc.InsertionMode.insertBefore: case Sys.Mvc.InsertionMode.insertBefore:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = content + target.innerHTML.trimStart(); target.innerHTML = content + target.innerHTML.trimStart();
} }
break; break;
case Sys.Mvc.InsertionMode.insertAfter: case Sys.Mvc.InsertionMode.insertAfter:
if (content && content.length > 0) { if (content && content.length > 0) {
target.innerHTML = target.innerHTML.trimEnd() + content; target.innerHTML = target.innerHTML.trimEnd() + content;
} }
break; break;
} }
} }
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Sys.Mvc.AsyncForm // Sys.Mvc.AsyncForm
Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() { Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() {
} }
Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) { Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) {
/// <param name="form" type="Object" domElement="true"> /// <param name="form" type="Object" domElement="true">
/// </param> /// </param>
/// <param name="evt" type="Sys.UI.DomEvent"> /// <param name="evt" type="Sys.UI.DomEvent">
/// </param> /// </param>
/// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions"> /// <param name="ajaxOptions" type="Sys.Mvc.AjaxOptions">
/// </param> /// </param>
evt.preventDefault(); evt.preventDefault();
var body = Sys.Mvc.MvcHelpers._serializeForm(form); var body = Sys.Mvc.MvcHelpers._serializeForm(form);
Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions); Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions);
} }
Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext');
Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink');
Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers');
Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm');
// ---- Do not remove this footer ---- // ---- Do not remove this footer ----
// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) // Generated using Script# v0.5.0.0 (http://projects.nikhilk.net)
// ----------------------------------- // -----------------------------------

View file

@ -1,4 +1,4 @@
Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};} Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};}
Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2} Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2}
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;} Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,25 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Host a Dinner</title> <title>Host a Dinner</title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<% Html.RenderPartial("DinnerForm") %> <% Html.RenderPartial("DinnerForm") %>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,39 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Delete Confirmation: <%=Html.Encode(Model.Title) %></title> <title>Delete Confirmation: <%=Html.Encode(Model.Title) %></title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2> <h2>
Delete Confirmation Delete Confirmation
</h2> </h2>
<div> <div>
<p>Please confirm you want to cancel the dinner titled: <p>Please confirm you want to cancel the dinner titled:
<i> <%=Html.Encode(Model.Title) %>? </i> </p> <i> <%=Html.Encode(Model.Title) %>? </i> </p>
</div> </div>
<% dim myForm <% dim myForm
myForm = Html.BeginForm() %> myForm = Html.BeginForm() %>
<input name="confirmButton" type="submit" value="Delete" /> <input name="confirmButton" type="submit" value="Delete" />
<% myForm.dispose() %> <% myForm.dispose() %>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,33 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Deleted</title> <title>Deleted</title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2>Dinner Deleted</h2> <h2>Dinner Deleted</h2>
<div> <div>
<p>Your dinner was successfully deleted.</p> <p>Your dinner was successfully deleted.</p>
</div> </div>
<div> <div>
<p><a href="/dinners">Click for Upcoming Dinners</a></p> <p><a href="/dinners">Click for Upcoming Dinners</a></p>
</div> </div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,57 +1,57 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title><%= Html.Encode(Model.Title) %></title> <title><%= Html.Encode(Model.Title) %></title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<div id="dinnerDiv"> <div id="dinnerDiv">
<h2><%= Html.Encode(Model.Title) %></h2> <h2><%= Html.Encode(Model.Title) %></h2>
<p> <p>
<strong>When:</strong> <strong>When:</strong>
<%= Model.EventDate.ToShortDateString() %> <%= Model.EventDate.ToShortDateString() %>
<strong>@</strong> <strong>@</strong>
<%= Model.EventDate.ToShortTimeString() %> <%= Model.EventDate.ToShortTimeString() %>
</p> </p>
<p> <p>
<strong>Where:</strong> <strong>Where:</strong>
<%= Html.Encode(Model.Address) %>, <%= Html.Encode(Model.Address) %>,
<%= Html.Encode(Model.Country) %> <%= Html.Encode(Model.Country) %>
</p> </p>
<p> <p>
<strong>Description:</strong> <strong>Description:</strong>
<%= Html.Encode(Model.Description) %> <%= Html.Encode(Model.Description) %>
</p> </p>
<p> <p>
<strong>Organizer:</strong> <strong>Organizer:</strong>
<%= Html.Encode(Model.HostedBy) %> <%= Html.Encode(Model.HostedBy) %>
(<%= Html.Encode(Model.ContactPhone) %>) (<%= Html.Encode(Model.ContactPhone) %>)
</p> </p>
<% Html.RenderPartial("RSVPStatus"); %> <% Html.RenderPartial("RSVPStatus"); %>
<% Html.RenderPartial("EditAndDeleteLinks"); %> <% Html.RenderPartial("EditAndDeleteLinks"); %>
</div> </div>
<div id="mapDiv"> <div id="mapDiv">
<% Html.RenderPartial("map"); %> <% Html.RenderPartial("map"); %>
</div> </div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,27 +1,27 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Edit: <%=Html.Encode(Model.Dinner.Title) %></title> <title>Edit: <%=Html.Encode(Model.Dinner.Title) %></title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2>Edit Dinner</h2> <h2>Edit Dinner</h2>
<% Html.RenderPartial("DinnerForm"); %> <% Html.RenderPartial("DinnerForm"); %>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,62 +1,62 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Upcoming Dinners</title> <title>Upcoming Dinners</title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2> <h2>
Upcoming Dinners Upcoming Dinners
</h2> </h2>
<ul> <ul>
<% dim dinner <% dim dinner
for each dinner in Model %> for each dinner in Model %>
<li> <li>
<%= Html.ActionLink(dinner.Title, "Details", Html.RouteValue("id", dinner.DinnerID)) %> <%= Html.ActionLink(dinner.Title, "Details", Html.RouteValue("id", dinner.DinnerID)) %>
on on
<%= Html.Encode(dinner.EventDate.ToShortDateString())%> <%= Html.Encode(dinner.EventDate.ToShortDateString())%>
@ @
<%= Html.Encode(dinner.EventDate.ToShortTimeString())%> <%= Html.Encode(dinner.EventDate.ToShortTimeString())%>
</li> </li>
<% next %> <% next %>
</ul> </ul>
<div class="pagination"> <div class="pagination">
<% if Model.HasPreviousPage then %> <% if Model.HasPreviousPage then %>
<%= Html.RouteLink("<<<", "UpcomingDinners", Html.RouteValue("page", Model.PageIndex-1)) %> <%= Html.RouteLink("<<<", "UpcomingDinners", Html.RouteValue("page", Model.PageIndex-1)) %>
<% end if %> <% end if %>
<% if Model.HasNextPage then %> <% if Model.HasNextPage then %>
<%= Html.RouteLink(">>>", "UpcomingDinners", Html.RouteValue("page", Model.PageIndex+1)) %> <%= Html.RouteLink(">>>", "UpcomingDinners", Html.RouteValue("page", Model.PageIndex+1)) %>
<% end if %> <% end if %>
</div> </div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,27 +1,27 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>You Don't Own This Dinner</title> <title>You Don't Own This Dinner</title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2>Error Accessing Dinner</h2> <h2>Error Accessing Dinner</h2>
<p>Sorry - but only the host of a Dinner can edit or delete it.</p> <p>Sorry - but only the host of a Dinner can edit or delete it.</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,28 +1,28 @@
<script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2" type="text/javascript"></script> <script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2" type="text/javascript"></script>
<script src="/Scripts/Map.js" type="text/javascript"></script> <script src="/Scripts/Map.js" type="text/javascript"></script>
<div id="theMap" style="width:520px"> <div id="theMap" style="width:520px">
</div> </div>
<script type="text/javascript"> <script type="text/javascript">
$(document).ready(function() { $(document).ready(function() {
var latitude = <%=Model.Latitude %>; var latitude = <%=Model.Latitude %>;
var longitude = <%=Model.Longitude %>; var longitude = <%=Model.Longitude %>;
if ((latitude == 0) || (longitude == 0)) if ((latitude == 0) || (longitude == 0))
LoadMap(); LoadMap();
else else
LoadMap(latitude, longitude, mapLoaded); LoadMap(latitude, longitude, mapLoaded);
}); });
function mapLoaded() { function mapLoaded() {
var title = "<%= Html.Encode(Model.Title) %>"; var title = "<%= Html.Encode(Model.Title) %>";
var address = "<%= Html.Encode(Model.Address) %>"; var address = "<%= Html.Encode(Model.Address) %>";
LoadPin(center, title, address); LoadPin(center, title, address);
map.SetZoomLevel(14); map.SetZoomLevel(14);
} }
</script> </script>

View file

@ -1,29 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server"> <head id="Head1" runat="server">
<title>Dinner Not Found</title> <title>Dinner Not Found</title>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
<meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" /> <meta content="Nerd, Dinner, Geek, Luncheon, Dweeb, Breakfast, Technology, Bar, Beer, Wonk" name="keywords" />
<meta name="description" content="Host and promote your own Nerd Dinner free!" /> <meta name="description" content="Host and promote your own Nerd Dinner free!" />
<script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script> <script src="/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
</head> </head>
<body> <body>
<div class="page"> <div class="page">
<% Html.RenderPartial("header") %> <% Html.RenderPartial("header") %>
<div id="main"> <div id="main">
<h2>Dinner Not Found</h2> <h2>Dinner Not Found</h2>
<p>Sorry - but the dinner you requested doesn't exist or was deleted.</p> <p>Sorry - but the dinner you requested doesn't exist or was deleted.</p>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

Some files were not shown because too many files have changed in this diff Show more