├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── sohovan.com.wxweb.zip └── sohovan.com.wxweb ├── packages ├── EntityFramework.5.0.0 │ ├── Content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── EntityFramework.5.0.0.nupkg │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ └── zh-Hans │ │ │ │ ├── EntityFramework.resources.dll │ │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ └── zh-Hans │ │ │ ├── EntityFramework.resources.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PS3.psd1 │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── Redirect.VS11.config │ │ ├── Redirect.config │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe ├── EntityFramework.zh-Hans.5.0.0 │ ├── EntityFramework.zh-Hans.5.0.0.nupkg │ └── lib │ │ ├── net40 │ │ └── zh-Hans │ │ │ ├── EntityFramework.resources.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ └── zh-Hans │ │ ├── EntityFramework.resources.dll │ │ └── EntityFramework.xml ├── Microsoft.AspNet.Mvc.4.0.20710.0 │ ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0 │ ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Providers.Core.1.1 │ ├── Microsoft.AspNet.Providers.Core.1.1.nupkg │ ├── lib │ │ └── net40 │ │ │ ├── System.Web.Providers.dll │ │ │ └── zh-Hans │ │ │ └── System.Web.Providers.resources.dll │ └── readme.html ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.1 │ ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.1.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ └── System.Web.Providers.resources.dll ├── Microsoft.AspNet.Providers.LocalDB.1.1 │ ├── Microsoft.AspNet.Providers.LocalDB.1.1.nupkg │ ├── content │ │ └── web.config.transform │ └── tools │ │ └── Install.ps1 ├── Microsoft.AspNet.Razor.2.0.20710.0 │ ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml ├── Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0 │ ├── Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml ├── Microsoft.AspNet.Web.Optimization.1.0.0 │ ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Optimization.dll │ │ └── zh-Hans │ │ └── System.Web.Optimization.resources.dll ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0 │ ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ └── System.Web.Optimization.resources.dll ├── Microsoft.AspNet.WebApi.4.0.20710.0 │ └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Net.Http.Formatting.xml │ │ └── zh-Hans │ │ ├── System.Net.Http.Formatting.resources.dll │ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Net.Http.Formatting.resources.dll │ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg │ ├── content │ │ └── web.config.transform │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.dll │ │ ├── System.Web.Http.xml │ │ └── zh-Hans │ │ ├── System.Web.Http.resources.dll │ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Web.Http.resources.dll │ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Http.WebHost.xml │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0 │ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.WebPages.xml │ │ └── zh-Hans │ │ ├── System.Web.Helpers.resources.dll │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ ├── System.Web.WebPages.resources.dll │ │ ├── system.web.helpers.xml │ │ ├── system.web.webpages.deployment.xml │ │ ├── system.web.webpages.razor.xml │ │ └── system.web.webpages.xml ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0 │ ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Web.Helpers.resources.dll │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ ├── System.Web.WebPages.resources.dll │ │ ├── system.web.helpers.xml │ │ ├── system.web.webpages.deployment.xml │ │ ├── system.web.webpages.razor.xml │ │ └── system.web.webpages.xml ├── Microsoft.Net.Http.2.0.20710.0 │ ├── Microsoft.Net.Http.2.0.20710.0.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ └── zh-Hans │ │ │ ├── System.Net.Http.WebRequest.resources.dll │ │ │ ├── System.Net.Http.WebRequest.xml │ │ │ ├── System.Net.Http.resources.dll │ │ │ └── System.Net.Http.xml │ │ └── net45 │ │ └── _._ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0 │ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ ├── System.Net.Http.WebRequest.resources.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.resources.dll │ │ └── System.Net.Http.xml ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ └── jquery.unobtrusive-ajax.min.js │ └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg ├── Modernizr.2.5.3 │ ├── Content │ │ └── Scripts │ │ │ └── modernizr-2.5.3.js │ └── Modernizr.2.5.3.nupkg ├── Newtonsoft.Json.4.5.6 │ ├── Newtonsoft.Json.4.5.6.nupkg │ └── lib │ │ └── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── WebGrease.1.1.0 │ ├── WebGrease.1.1.0.nupkg │ ├── lib │ │ ├── Antlr3.Runtime.dll │ │ └── WebGrease.dll │ └── tools │ │ └── WG.exe ├── jQuery.1.7.1.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery-1.7.1-vsdoc.js │ │ │ ├── jquery-1.7.1.js │ │ │ └── jquery-1.7.1.min.js │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ ├── jquery-1.7.1.intellisense.js │ │ └── uninstall.ps1 │ └── jQuery.1.7.1.1.nupkg ├── jQuery.UI.Combined.1.8.20.1 │ ├── Content │ │ ├── Content │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ └── Scripts │ │ │ ├── jquery-ui-1.8.20.js │ │ │ └── jquery-ui-1.8.20.min.js │ └── jQuery.UI.Combined.1.8.20.1.nupkg ├── jQuery.Validation.1.9.0.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jQuery.Validation.1.9.0.1.nupkg ├── knockoutjs.2.1.0 │ ├── Content │ │ └── Scripts │ │ │ ├── knockout-2.1.0.debug.js │ │ │ └── knockout-2.1.0.js │ └── knockoutjs.2.1.0.nupkg └── repositories.config ├── sohovan.com.common ├── CommonMethod.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ ├── Debug │ │ ├── sohovan.com.common.dll │ │ └── sohovan.com.common.pdb │ └── Release │ │ ├── sohovan.com.common.dll │ │ └── sohovan.com.common.pdb ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── sohovan.com.common.csproj.FileListAbsolute.txt │ │ ├── sohovan.com.common.csprojResolveAssemblyReference.cache │ │ ├── sohovan.com.common.dll │ │ └── sohovan.com.common.pdb │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── sohovan.com.common.csproj.FileListAbsolute.txt │ │ ├── sohovan.com.common.csprojResolveAssemblyReference.cache │ │ ├── sohovan.com.common.dll │ │ └── sohovan.com.common.pdb └── sohovan.com.common.csproj ├── sohovan.com.wxapi ├── BasicApi.cs ├── JsApi.cs ├── MenuApi │ └── CreateMenu.cs ├── Properties │ └── AssemblyInfo.cs ├── QrCodeApi.cs ├── ResponseMessage.cs ├── UserApi │ └── Oauth2.cs ├── WxXmlModel.cs ├── bin │ ├── Debug │ │ ├── sohovan.com.common.dll │ │ ├── sohovan.com.common.pdb │ │ ├── sohovan.com.wxapi.dll │ │ └── sohovan.com.wxapi.pdb │ └── Release │ │ ├── sohovan.com.common.dll │ │ ├── sohovan.com.common.pdb │ │ ├── sohovan.com.wxapi.dll │ │ └── sohovan.com.wxapi.pdb ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── sohovan.com.wxapi.csproj.FileListAbsolute.txt │ │ ├── sohovan.com.wxapi.csprojResolveAssemblyReference.cache │ │ ├── sohovan.com.wxapi.dll │ │ └── sohovan.com.wxapi.pdb │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── sohovan.com.wxapi.csproj.FileListAbsolute.txt │ │ ├── sohovan.com.wxapi.csprojResolveAssemblyReference.cache │ │ ├── sohovan.com.wxapi.dll │ │ └── sohovan.com.wxapi.pdb └── sohovan.com.wxapi.csproj ├── sohovan.com.wxdemo ├── API.ashx ├── API.ashx.cs ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ ├── Site.css │ └── themes │ │ └── base │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ └── minified │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.min.css │ │ ├── jquery.ui.accordion.min.css │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.min.css │ │ ├── jquery.ui.core.min.css │ │ ├── jquery.ui.datepicker.min.css │ │ ├── jquery.ui.dialog.min.css │ │ ├── jquery.ui.progressbar.min.css │ │ ├── jquery.ui.resizable.min.css │ │ ├── jquery.ui.selectable.min.css │ │ ├── jquery.ui.slider.min.css │ │ ├── jquery.ui.tabs.min.css │ │ └── jquery.ui.theme.min.css ├── Controllers │ ├── HomeController.cs │ └── SharedController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── wxdemo.pubxml │ │ └── wxdemo.pubxml.user ├── Scripts │ ├── _references.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-2.1.0.debug.js │ ├── knockout-2.1.0.js │ └── modernizr-2.5.3.js ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── sohovan.com.common.dll │ └── sohovan.com.wxapi.dll ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── build.force │ │ ├── sohovan.com.wxdemo.csproj.FileListAbsolute.txt │ │ └── sohovan.com.wxdemo.csprojResolveAssemblyReference.cache │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Package │ │ └── PackageTmp │ │ │ ├── API.ashx │ │ │ ├── Content │ │ │ ├── Site.css │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ │ ├── Global.asax │ │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── knockout-2.1.0.debug.js │ │ │ ├── knockout-2.1.0.js │ │ │ └── modernizr-2.5.3.js │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.config │ │ │ ├── bin │ │ │ ├── Antlr3.Runtime.dll │ │ │ ├── EntityFramework.dll │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── Microsoft.Web.Infrastructure.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ │ ├── System.Configuration.dll │ │ │ ├── System.Data.DataSetExtensions.dll │ │ │ ├── System.Data.Entity.dll │ │ │ ├── System.Data.dll │ │ │ ├── System.Drawing.dll │ │ │ ├── System.EnterpriseServices.dll │ │ │ ├── System.Net.Http.Formatting.dll │ │ │ ├── System.Net.Http.WebRequest.dll │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Web.Abstractions.dll │ │ │ ├── System.Web.ApplicationServices.dll │ │ │ ├── System.Web.DynamicData.dll │ │ │ ├── System.Web.Entity.dll │ │ │ ├── System.Web.Extensions.dll │ │ │ ├── System.Web.Http.WebHost.dll │ │ │ ├── System.Web.Http.dll │ │ │ ├── System.Web.Mvc.dll │ │ │ ├── System.Web.Optimization.dll │ │ │ ├── System.Web.Providers.dll │ │ │ ├── System.Web.Razor.dll │ │ │ ├── System.Web.Routing.dll │ │ │ ├── System.Web.Services.dll │ │ │ ├── System.Web.WebPages.Deployment.dll │ │ │ ├── System.Web.WebPages.Razor.dll │ │ │ ├── System.Web.WebPages.dll │ │ │ ├── System.Web.dll │ │ │ ├── System.Xml.Linq.dll │ │ │ ├── System.Xml.dll │ │ │ ├── System.dll │ │ │ ├── WebGrease.dll │ │ │ ├── sohovan.com.common.dll │ │ │ ├── sohovan.com.wxapi.dll │ │ │ ├── sohovan.com.wxdemo.dll │ │ │ └── zh-Hans │ │ │ │ ├── EntityFramework.resources.dll │ │ │ │ ├── System.Net.Http.Formatting.resources.dll │ │ │ │ ├── System.Net.Http.WebRequest.resources.dll │ │ │ │ ├── System.Net.Http.resources.dll │ │ │ │ ├── System.Web.Http.WebHost.resources.dll │ │ │ │ ├── System.Web.Http.resources.dll │ │ │ │ ├── System.Web.Mvc.resources.dll │ │ │ │ ├── System.Web.Optimization.resources.dll │ │ │ │ ├── System.Web.Providers.resources.dll │ │ │ │ ├── System.Web.Razor.resources.dll │ │ │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ │ │ └── System.Web.WebPages.resources.dll │ │ │ └── packages.config │ │ ├── TransformWebConfig │ │ ├── assist │ │ │ └── Web.config │ │ ├── original │ │ │ └── Web.config │ │ └── transformed │ │ │ └── Web.config │ │ ├── _WPPLastBuildInfo.txt │ │ ├── sohovan.com.wxdemo.csproj.FileListAbsolute.txt │ │ ├── sohovan.com.wxdemo.csprojResolveAssemblyReference.cache │ │ ├── sohovan.com.wxdemo.dll │ │ └── sohovan.com.wxdemo.pdb ├── packages.config ├── sohovan.com.wxdemo.csproj └── sohovan.com.wxdemo.csproj.user ├── sohovan.com.wxweb.sln └── sohovan.com.wxweb.v11.suo /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | 3 | MIT License 4 | 5 | Copyright (c) 2018 谢俊 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # weixin 2 | 版本.net4.0 MVC4 开发工具:Visual Studio 2012 3 | 基于微信开发文档开发的微信接口程序,完全不涉及任何业务,适用于任何微信接口开发项目! 4 | 5 | 6 | -------------------------------------------------------------------------------- /sohovan.com.wxweb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb.zip -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- 1 | TOPIC 2 | about_EntityFramework 3 | 4 | SHORT DESCRIPTION 5 | Provides information about Entity Framework commands. 6 | 7 | LONG DESCRIPTION 8 | This topic describes the Entity Framework commands. Entity Framework is 9 | Microsoft's recommended data access technology for new applications. 10 | 11 | 12 | The following Entity Framework cmdlets are included. 13 | 14 | Cmdlet Description 15 | ----------------- --------------------------------------------------- 16 | Enable-Migrations Enables Code First Migrations in a project. 17 | 18 | Add-Migration Scaffolds a migration script for any pending model 19 | changes. 20 | 21 | Update-Database Applies any pending migrations to the database. 22 | 23 | Get-Migrations Displays the migrations that have been applied to 24 | the target database. 25 | 26 | SEE ALSO 27 | Enable-Migrations 28 | Add-Migration 29 | Update-Database 30 | Get-Migrations 31 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/EntityFramework.zh-Hans.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/EntityFramework.zh-Hans.5.0.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/EntityFramework.zh-Hans.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.1.1/readme.html -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.1/Microsoft.AspNet.Providers.Core.zh-Hans.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.1/Microsoft.AspNet.Providers.Core.zh-Hans.1.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.1/lib/net40/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.1/lib/net40/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.20710.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/WebGrease.1.1.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/WebGrease.1.1.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/WebGrease.1.1.0/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/WebGrease.1.1.0/tools/WG.exe -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.1.7.1.1/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $supportsJsIntelliSenseFile = [System.Version]::Parse($dte.Version).Major -ge 11 7 | 8 | if (-not $supportsJsIntelliSenseFile) { 9 | Write-Host "IntelliSense JS files are not supported by your version of VS: $dte.Version" 10 | exit 11 | } 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | Write-Host "No Scripts folder found" 16 | exit 17 | } 18 | 19 | # Delete the vsdoc file from the project 20 | try { 21 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 22 | Delete-ProjectItem $vsDocProjectItem 23 | } 24 | catch { 25 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 26 | exit 27 | } 28 | 29 | # Copy the intellisense file to the project from the tools folder 30 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 31 | try { 32 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 33 | } 34 | catch { 35 | # This will throw if the file already exists, so we need to catch here 36 | } 37 | 38 | # Update the _references.js file 39 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.1.7.1.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.20 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 17 | .ui-helper-clearfix:after { clear: both; } 18 | .ui-helper-clearfix { zoom: 1; } 19 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 20 | 21 | 22 | /* Interaction Cues 23 | ----------------------------------*/ 24 | .ui-state-disabled { cursor: default !important; } 25 | 26 | 27 | /* Icons 28 | ----------------------------------*/ 29 | 30 | /* states and images */ 31 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 32 | 33 | 34 | /* Misc visuals 35 | ----------------------------------*/ 36 | 37 | /* Overlays */ 38 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 39 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.button.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg -------------------------------------------------------------------------------- /sohovan.com.wxweb/packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("sohovan.com.common")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("sohovan.com.common")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("5b7350a5-85fa-4e41-81dc-d27b6b92a192")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/bin/Debug/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/bin/Debug/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/bin/Debug/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/bin/Debug/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/bin/Release/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/bin/Release/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/bin/Release/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/bin/Release/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\bin\Debug\sohovan.com.common.dll 2 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\bin\Debug\sohovan.com.common.pdb 3 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Debug\sohovan.com.common.dll 4 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Debug\sohovan.com.common.pdb 5 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Debug\sohovan.com.common.csprojResolveAssemblyReference.cache 6 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Debug/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\bin\Release\sohovan.com.common.dll 2 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\bin\Release\sohovan.com.common.pdb 3 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Release\sohovan.com.common.dll 4 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Release\sohovan.com.common.pdb 5 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.common\obj\Release\sohovan.com.common.csprojResolveAssemblyReference.cache 6 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.common/obj/Release/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/MenuApi/CreateMenu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Web.Script.Serialization; 6 | 7 | namespace sohovan.com.wxapi.MenuApi 8 | { 9 | 10 | public class CreateMenu 11 | { 12 | JavaScriptSerializer Jss = new JavaScriptSerializer(); 13 | 14 | #region 发布菜单 15 | /// 16 | /// 发布菜单 17 | /// 18 | /// 配置的菜单json数据 19 | /// AppID 20 | /// AppSecret 21 | /// 返回0成功否则错误码 22 | public string MenuCreate(string MenuJson,string AppID,string AppSecret) { 23 | string setMenuUrl = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token={0}"; 24 | setMenuUrl = string.Format(setMenuUrl, BasicApi.GetTokenSession(AppID,AppSecret));//获取token、拼凑url 25 | string respText = sohovan.com.common.CommonMethod.WebRequestPostOrGet(setMenuUrl, MenuJson); 26 | Dictionary respDic = (Dictionary)Jss.DeserializeObject(respText); 27 | return respDic["errcode"].ToString();//返回0发布成功 28 | } 29 | #endregion 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("sohovan.com.wxapi")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("sohovan.com.wxapi")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("8f403f96-53ea-40e3-a54c-0dc619324d72")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.wxapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Debug/sohovan.com.wxapi.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.common.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.wxapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/bin/Release/sohovan.com.wxapi.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\MySVN\HuWaiTong\trunk\HuWaiTong\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.dll 2 | E:\MySVN\HuWaiTong\trunk\HuWaiTong\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.pdb 3 | E:\MySVN\HuWaiTong\trunk\HuWaiTong\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.csprojResolveAssemblyReference.cache 4 | E:\MySVN\HuWaiTong\trunk\HuWaiTong\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.dll 5 | E:\MySVN\HuWaiTong\trunk\HuWaiTong\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.pdb 6 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.dll 7 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.pdb 8 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.dll 9 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.pdb 10 | E:\svn\trunk\wechat\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.dll 11 | E:\svn\trunk\wechat\sohovan.com.wxapi\bin\Debug\sohovan.com.wxapi.pdb 12 | E:\svn\trunk\wechat\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.dll 13 | E:\svn\trunk\wechat\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.pdb 14 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Debug\sohovan.com.wxapi.csprojResolveAssemblyReference.cache 15 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Debug\sohovan.com.common.dll 16 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Debug\sohovan.com.common.pdb 17 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Debug/sohovan.com.wxapi.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Release\sohovan.com.wxapi.dll 2 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Release\sohovan.com.wxapi.pdb 3 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Release\sohovan.com.common.dll 4 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\bin\Release\sohovan.com.common.pdb 5 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Release\sohovan.com.wxapi.csprojResolveAssemblyReference.cache 6 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Release\sohovan.com.wxapi.dll 7 | E:\github\sohovan\sohovan.com.wxweb\sohovan.com.wxapi\obj\Release\sohovan.com.wxapi.pdb 8 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxapi/obj/Release/sohovan.com.wxapi.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/API.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" CodeBehind="API.ashx.cs" Class="sohovan.com.wxdemo.API" %> 2 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace sohovan.com.wxdemo 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace sohovan.com.wxdemo 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace sohovan.com.wxdemo 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/Site.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: .85em; 3 | font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif; 4 | color: #232323; 5 | background-color: #fff; 6 | } 7 | 8 | header, footer, nav, section { 9 | display: block; 10 | } 11 | 12 | 13 | /* Styles for basic forms 14 | -----------------------------------------------------------*/ 15 | fieldset { 16 | border: 1px solid #ddd; 17 | padding: 0 1.4em 1.4em 1.4em; 18 | margin: 0 0 1.5em 0; 19 | } 20 | 21 | legend { 22 | font-size: 1.2em; 23 | font-weight: bold; 24 | } 25 | 26 | textarea { 27 | min-height: 75px; 28 | } 29 | 30 | .editor-label { 31 | margin: 1em 0 0 0; 32 | } 33 | 34 | .editor-field { 35 | margin: 0.5em 0 0 0; 36 | } 37 | 38 | 39 | /* Styles for validation helpers 40 | -----------------------------------------------------------*/ 41 | .field-validation-error { 42 | color: #f00; 43 | } 44 | 45 | .field-validation-valid { 46 | display: none; 47 | } 48 | 49 | .input-validation-error { 50 | border: 1px solid #f00; 51 | background-color: #fee; 52 | } 53 | 54 | .validation-summary-errors { 55 | font-weight: bold; 56 | color: #f00; 57 | } 58 | 59 | .validation-summary-valid { 60 | display: none; 61 | } 62 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.20 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 17 | .ui-helper-clearfix:after { clear: both; } 18 | .ui-helper-clearfix { zoom: 1; } 19 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 20 | 21 | 22 | /* Interaction Cues 23 | ----------------------------------*/ 24 | .ui-state-disabled { cursor: default !important; } 25 | 26 | 27 | /* Icons 28 | ----------------------------------*/ 29 | 30 | /* states and images */ 31 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 32 | 33 | 34 | /* Misc visuals 35 | ----------------------------------*/ 36 | 37 | /* Overlays */ 38 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 39 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.button.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace sohovan.com.wxdemo.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | // 12 | // GET: /Home/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Controllers/SharedController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace sohovan.com.wxdemo.Controllers 8 | { 9 | public class SharedController : Controller 10 | { 11 | // 12 | // GET: /Shared/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | // 20 | // GET: /Shared/ 21 | 22 | public ActionResult Error() 23 | { 24 | return View(); 25 | } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="sohovan.com.wxdemo.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Mvc; 7 | using System.Web.Optimization; 8 | using System.Web.Routing; 9 | 10 | namespace sohovan.com.wxdemo 11 | { 12 | // 注意: 有关启用 IIS6 或 IIS7 经典模式的说明, 13 | // 请访问 http://go.microsoft.com/?LinkId=9394801 14 | 15 | public class MvcApplication : System.Web.HttpApplication 16 | { 17 | protected void Application_Start() 18 | { 19 | AreaRegistration.RegisterAllAreas(); 20 | 21 | WebApiConfig.Register(GlobalConfiguration.Configuration); 22 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 23 | RouteConfig.RegisterRoutes(RouteTable.Routes); 24 | BundleConfig.RegisterBundles(BundleTable.Bundles); 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("sohovan.com.wxdemo")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("sohovan.com.wxdemo")] 13 | [assembly: AssemblyCopyright("版权所有(C) Microsoft 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的某个类型, 19 | // 请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("e5e3b7ae-8da1-4aed-bc0f-0fe1c2105e25")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Properties/PublishProfiles/wxdemo.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | FileSystem 9 | 10 | E:\wxdemo 11 | False 12 | 13 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/Scripts/_references.js -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | sohovan微信jdk 11 | 12 | 13 |
14 | sohovan微信jdk 更新中 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 错误 11 | 12 | 13 |

14 | 抱歉,处理您的请求时出错。 15 |

16 | 17 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | @RenderBody() 12 | 13 | @Scripts.Render("~/bundles/jquery") 14 | @RenderSection("scripts", required: false) 15 | 16 | 17 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/bin/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/bin/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/bin/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/bin/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/build.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/build.force -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/sohovan.com.wxdemo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Debug/sohovan.com.wxdemo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/API.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" CodeBehind="API.ashx.cs" Class="sohovan.com.wxdemo.API" %> 2 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/Site.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: .85em; 3 | font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif; 4 | color: #232323; 5 | background-color: #fff; 6 | } 7 | 8 | header, footer, nav, section { 9 | display: block; 10 | } 11 | 12 | 13 | /* Styles for basic forms 14 | -----------------------------------------------------------*/ 15 | fieldset { 16 | border: 1px solid #ddd; 17 | padding: 0 1.4em 1.4em 1.4em; 18 | margin: 0 0 1.5em 0; 19 | } 20 | 21 | legend { 22 | font-size: 1.2em; 23 | font-weight: bold; 24 | } 25 | 26 | textarea { 27 | min-height: 75px; 28 | } 29 | 30 | .editor-label { 31 | margin: 1em 0 0 0; 32 | } 33 | 34 | .editor-field { 35 | margin: 0.5em 0 0 0; 36 | } 37 | 38 | 39 | /* Styles for validation helpers 40 | -----------------------------------------------------------*/ 41 | .field-validation-error { 42 | color: #f00; 43 | } 44 | 45 | .field-validation-valid { 46 | display: none; 47 | } 48 | 49 | .input-validation-error { 50 | border: 1px solid #f00; 51 | background-color: #fee; 52 | } 53 | 54 | .validation-summary-errors { 55 | font-weight: bold; 56 | color: #f00; 57 | } 58 | 59 | .validation-summary-valid { 60 | display: none; 61 | } 62 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.20 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 17 | .ui-helper-clearfix:after { clear: both; } 18 | .ui-helper-clearfix { zoom: 1; } 19 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 20 | 21 | 22 | /* Interaction Cues 23 | ----------------------------------*/ 24 | .ui-state-disabled { cursor: default !important; } 25 | 26 | 27 | /* Icons 28 | ----------------------------------*/ 29 | 30 | /* states and images */ 31 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 32 | 33 | 34 | /* Misc visuals 35 | ----------------------------------*/ 36 | 37 | /* Overlays */ 38 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 39 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.button.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="sohovan.com.wxdemo.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Scripts/_references.js -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | sohovan微信jdk 11 | 12 | 13 |
14 | sohovan微信jdk 更新中 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 错误 11 | 12 | 13 |

14 | 抱歉,处理您的请求时出错。 15 |

16 | 17 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | @RenderBody() 12 | 13 | @Scripts.Render("~/bundles/jquery") 14 | @RenderSection("scripts", required: false) 15 | 16 | 17 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/EntityFramework.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Configuration.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.Entity.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Data.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Drawing.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.EnterpriseServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.EnterpriseServices.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Net.Http.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Abstractions.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.ApplicationServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.ApplicationServices.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.DynamicData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.DynamicData.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Entity.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Extensions.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Http.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Providers.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Routing.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.Services.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Web.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Xml.Linq.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.Xml.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/System.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/WebGrease.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.common.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.wxapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.wxapi.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.wxdemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/sohovan.com.wxdemo.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/Package/PackageTmp/bin/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/TransformWebConfig/assist/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/_WPPLastBuildInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/_WPPLastBuildInfo.txt -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.dll -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxdemo/obj/Release/sohovan.com.wxdemo.pdb -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxdemo/sohovan.com.wxdemo.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | wxdemo 5 | 6 | 7 | 8 | 9 | 10 | Home/Index 11 | SpecificPage 12 | True 13 | False 14 | False 15 | False 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | False 25 | True 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxweb.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sohovan.com.wxapi", "sohovan.com.wxapi\sohovan.com.wxapi.csproj", "{EBBA57D3-AA72-43F0-89CF-9FC362A2D73B}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sohovan.com.wxdemo", "sohovan.com.wxdemo\sohovan.com.wxdemo.csproj", "{1696EB1D-5EA2-4F9A-B663-D3BAF6467193}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sohovan.com.common", "sohovan.com.common\sohovan.com.common.csproj", "{C9E915A2-C87D-4F71-BB9D-A6EF3A646D7B}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {EBBA57D3-AA72-43F0-89CF-9FC362A2D73B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {EBBA57D3-AA72-43F0-89CF-9FC362A2D73B}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {EBBA57D3-AA72-43F0-89CF-9FC362A2D73B}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {EBBA57D3-AA72-43F0-89CF-9FC362A2D73B}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {1696EB1D-5EA2-4F9A-B663-D3BAF6467193}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {1696EB1D-5EA2-4F9A-B663-D3BAF6467193}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {1696EB1D-5EA2-4F9A-B663-D3BAF6467193}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {1696EB1D-5EA2-4F9A-B663-D3BAF6467193}.Release|Any CPU.Build.0 = Release|Any CPU 24 | {C9E915A2-C87D-4F71-BB9D-A6EF3A646D7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 25 | {C9E915A2-C87D-4F71-BB9D-A6EF3A646D7B}.Debug|Any CPU.Build.0 = Debug|Any CPU 26 | {C9E915A2-C87D-4F71-BB9D-A6EF3A646D7B}.Release|Any CPU.ActiveCfg = Release|Any CPU 27 | {C9E915A2-C87D-4F71-BB9D-A6EF3A646D7B}.Release|Any CPU.Build.0 = Release|Any CPU 28 | EndGlobalSection 29 | GlobalSection(SolutionProperties) = preSolution 30 | HideSolutionNode = FALSE 31 | EndGlobalSection 32 | EndGlobal 33 | -------------------------------------------------------------------------------- /sohovan.com.wxweb/sohovan.com.wxweb.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiejun-net/weixin/d7c458103fea3c3582e25407f4de0363f6fcbfb7/sohovan.com.wxweb/sohovan.com.wxweb.v11.suo --------------------------------------------------------------------------------