<!--注意: " /> 久久电影院久久国产,午夜日本大胆裸艺术,在线观看国产精美视频

天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

Web.config配置文件詳解

  花了點(diǎn)時(shí)間整理了一下ASP.NET Web.config配置文件的基本使用方法。很適合新手參看,由于Web.config在使用很靈活,可以自定義一些節(jié)點(diǎn)。所以這里只介紹一些比較常用的節(jié)點(diǎn)。

 

<?xml version="1.0"?>

<!--注意: 除了手動編輯此文件以外,您還可以使用 Web 管理工具來配置應(yīng)用程序的設(shè)置。可以使用 Visual Studio 中
的“網(wǎng)站”->“ASP.NET 配置”選項(xiàng)。

設(shè)置和注釋的完整列表在 machine.config.comments 中,該文件通常位于 "Windows"Microsoft.NET"Framewo
rk"v2.x"Config 中。
-->

<!--Webconfig文件是一個(gè)xml文件,configuration是xml文件的根節(jié)點(diǎn),由于xml文件的根節(jié)點(diǎn)只能有一個(gè),所以
Webconfig的所有配置都是在這個(gè)節(jié)點(diǎn)內(nèi)進(jìn)行的。
-->

<configuration>

<!--指定配置節(jié)和命名空間聲明。clear:移除對繼承的節(jié)和節(jié)組的所有引用,只允許由當(dāng)前 section 和 sectionGroup
 元素添加的節(jié)和節(jié)組。remove:移除對繼承的節(jié)和節(jié)組的引用。

section:定義配置節(jié)處理程序與配置元素之間的關(guān)聯(lián)。sectionGroup:定義配置節(jié)處理程序與配置節(jié)之間的關(guān)聯(lián)。
-->

<configSections>

<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWeb
ExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicK
eyToken=31bf3856ad364e35"
>

<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, Sys
tem.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e3
5"
>

<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptRe
sourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
requirePermission="false" allowDefinition="MachiNEToApplication"/>

</sectionGroup>

</sectionGroup>

<section name="rewriter" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSe
ctionHandler, Intelligencia.UrlRewriter"
/>

</configSections>



<!--appSettings是應(yīng)用程序設(shè)置,可以定義應(yīng)用程序的全局常量設(shè)置等信息-->

<appSettings>

<add key="1" value="1" />

<add key="gao" value="weipeng" />

</appSettings>



<!--連接字符串設(shè)置-->

<connectionStrings>

<add name="ConnString" connectionString="Data Source=GAO;Initial Catalog=HBWXDate;Us
er ID=sa;password=sa"
></add>

<add name="111" connectionString="11111" />

</connectionStrings>



<!--指定應(yīng)用子配置設(shè)置的資源,并鎖定配置設(shè)置,以防止它們被子配置文件重寫。page指定應(yīng)用包含的配置設(shè)置的資源
.allowOverride是否允許配置文件的重寫,提高配置文件的安全性
-->

<location path="Default.ASPx" allowOverride="false">

<!--控制ASP.NET運(yùn)行時(shí)的行為-->

<system.web>

<!--identity控制web應(yīng)用程序的身份驗(yàn)證標(biāo)識.-->

<identity impersonate="false" />



<!--標(biāo)識特定于頁的配置設(shè)置(如是否啟用會話狀態(tài)、視圖狀態(tài),是否檢測用戶的輸入等)。<pages>可以在計(jì)算機(jī)、
站點(diǎn)、應(yīng)用程序和子目錄級別聲明.

這里的幾個(gè)屬性的意思是默認(rèn)主頁為Index,主題是Default,不檢測用戶在瀏覽器輸入的內(nèi)容中是否存在潛在的危險(xiǎn)數(shù)
據(jù)(注:該項(xiàng)默認(rèn)是檢測,如果你使用了不檢測,一要對用戶的輸入進(jìn)行編碼或驗(yàn)證),在從客戶端回發(fā)頁時(shí)將檢查加密的視
圖狀態(tài),以驗(yàn)證視圖狀態(tài)是否已在客戶端被篡改。(注:該項(xiàng)默認(rèn)是不驗(yàn)證)禁用ViewState
-->

<pages masterPageFile="Index" theme="Default" buffer="true" enableViewStateMac="true"
validateRequest
="false" enableViewState="false">

<!--controls 元素定義標(biāo)記前綴所在的 register 指令和命名空間的集合-->

<controls></controls>

<!--將在程序集預(yù)編譯期間使用的導(dǎo)入指令的集合-->

<namespaces></namespaces>

</pages>



<!--默認(rèn)錯(cuò)誤頁設(shè)置,mode:具有On,Off,RemoteOnly 3種狀態(tài)。On表示始終顯示自定義的信息; Off表示始終
顯示詳細(xì)的ASP.NET錯(cuò)誤信息; RemoteOnly表示只對不在本地Web服務(wù)器上運(yùn)行的用戶顯示自定義信息.defaultRed
irect:用于出現(xiàn)錯(cuò)誤時(shí)重定向的URL地址
-->

<customErrors defaultRedirect="Err.html" mode="RemoteOnly">

<!--特殊代碼編號的錯(cuò)誤從定向文件-->

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>



<!--配置調(diào)試和跟蹤:下面配置的意思是啟動調(diào)試(默認(rèn)),捕獲跟蹤信息,要緩存的跟蹤請求個(gè)數(shù)(15),跟蹤結(jié)果的排列順序-->

<trace enabled="true" localOnly="false" pageOutput="true" requestLimit="15" traceMode="
SortByCategory"
/>



<!-- 設(shè)置 compilation debug="true" 將調(diào)試符號插入已編譯的頁面中。但由于這會影響性能,因此只在開發(fā)過
程中將此值設(shè)置為 true。設(shè)置默認(rèn)的開發(fā)語言C#。batch是否支持批處理
-->

<compilation debug="true" defaultLanguage="c#" batch="false">

<assemblies>

<!--加的程序集引用,每添加一個(gè)程序集,就表示你的應(yīng)用程序已經(jīng)依賴了一個(gè)程序集,你就可以在你的應(yīng)用程序
中使用了
-->

<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKe
yToken=31bf3856ad364e35"
/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03
F5F7F11D50A3A"
/>

<add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"
/>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyTok
en=B77A5C561934E089"
/>

<add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7
F11D50A3A"
/>

<add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561
934E089"
/>

<add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C
561934E089"
/>

<add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03
F5F7F11D50A3A"
/>

<add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C
561934E089"
/>

<add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken
=B03F5F7F11D50A3A"
/>

<add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

</assemblies>

<!--定義用于編譯自定義資源文件的生成提供程序的集合。-->

<buildProviders>

<!---->

<add extension=".ASPx" type="System.Web.Compilation.PageBuildProvider"/>

<add extension=".ascx" type="System.Web.Compilation.UserControlBuildProvider"/>

<add extension=".master" type="System.Web.Compilation.MasterPageBuildProvider"/>

<add extension=".asmx" type="System.Web.Compilation.WebServiceBuildProvider"/>

<add extension=".ashx" type="System.Web.Compilation.WebHandlerBuildProvider"/>

<add extension=".soap" type="System.Web.Compilation.WebServiceBuildProvider"/>

<add extension=".resx" type="System.Web.Compilation.ResXBuildProvider"/>

<add extension=".resources" type="System.Web.Compilation.ResourcesBuildProvider"/>

<add extension=".wsdl" type="System.Web.Compilation.WsdlBuildProvider"/>

<add extension=".xsd" type="System.Web.Compilation.XsdBuildProvider"/>

<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer
.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
/>

</buildProviders>

</compilation>



<!--通過 <authentication> 節(jié)可以配置 ASP.NET 使用的 安全身份驗(yàn)證模式,以標(biāo)識傳入的用戶。Windows:
 使用IIS驗(yàn)證方式,Forms: 使用基于窗體的驗(yàn)證方式,Passport: 采用Passport cookie驗(yàn)證模式,None: 不采用任何
驗(yàn)證方式
-->

<authentication mode="Forms">

<!--Name: 指定完成身份驗(yàn)證的Http cookie的名稱.LoginUrl: 如果未通過驗(yàn)證或超時(shí)后重定向的頁面URL,一
般為登錄頁面,讓用戶重新登錄。Protection: 指定 cookie數(shù)據(jù)的保護(hù)方式.

可設(shè)置為:All表示加密數(shù)據(jù),并進(jìn)行有效性驗(yàn)證兩種方式,None表示不保護(hù)Cookie,Encryption表示對Cookie內(nèi)
容進(jìn)行加密,validation表示對Cookie內(nèi)容進(jìn)行有效性驗(yàn)證,TimeOut: 指定Cookie的失效時(shí)間. 超時(shí)后要重新登錄
-->

<forms name=".ASPXUSERDEMO" loginUrl="Login.ASPx" protection="All" timeout="30"/>

</authentication>

<!--控制對 URL 資源的客戶端訪問(如允許匿名用戶訪問)。此元素可以在任何級別(計(jì)算機(jī)、站點(diǎn)、應(yīng)用程序、子目錄或頁)上聲明。必需與<authentication> 節(jié)配合使用。此處的意思是對匿名用戶不進(jìn)行身份驗(yàn)證。拒絕用戶weipeng-->

<authorization>

<allow users="*"/>

<deny users="weipeng"/>

<allow users="aa" roles="aa" />

</authorization>

<!--站點(diǎn)全球化設(shè)置,requestEncoding: 它用來檢查每一個(gè)發(fā)來請求的編碼.responseEncoding: 用于檢查發(fā)回
的響應(yīng)內(nèi)容編碼.fileEncoding:用于檢查ASPx,asax等文件解析的默認(rèn)編碼,默認(rèn)的編碼是utf-8
-->

<globalization requestEncoding="gb2312" responseEncoding="gb2312" fileEncoding="gb2312" />

<!--會話狀態(tài)設(shè)置。mode: 分為off,Inproc,StateServer,SqlServer幾種狀態(tài) mode = InProc 存儲在進(jìn)程中
特點(diǎn):具有最佳的性能,速度最快,但不能跨多臺服務(wù)器存儲共享.mode = "StateServer" 存儲在狀態(tài)服務(wù)器中特點(diǎn):當(dāng)
需要跨服務(wù)器維護(hù)用戶會話信息時(shí),使用此方法。但是信息存儲在狀態(tài)服務(wù)器上,一旦狀態(tài)服務(wù)器出現(xiàn)故障,信息將丟失.
mode="SqlServer" 存儲在sql server中特點(diǎn):工作負(fù)載會變大,但信息不會丟失

stateConnectionString :指定ASP.NET應(yīng)用程序存儲遠(yuǎn)程會話狀態(tài)的服務(wù)器名,默認(rèn)為本機(jī)。sqlConnectionStri
ng:當(dāng)用會話狀態(tài)數(shù)據(jù)庫時(shí),在這里設(shè)置連接字符串。Cookieless:設(shè)置為flase時(shí),表示使用cookie會話狀態(tài)來標(biāo)識客戶
.timeout表示會話超時(shí)時(shí)間。
-->

<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionS
tring
="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="20"></ses
sionState
>

<!--ASP.NET 應(yīng)用程序配置頁的視圖狀態(tài)設(shè)置。設(shè)置要存儲在頁歷史記錄中的項(xiàng)數(shù)。-->

<sessionPageState historySize="9"/>

<!--配置ASP.NET http運(yùn)行庫的設(shè)置。可以在計(jì)算機(jī),站點(diǎn),應(yīng)用程序和子目錄級別聲明

允許最多的請求個(gè)數(shù)100,最長允許執(zhí)行請求時(shí)間為80秒,控制用戶上傳文件的大小,默認(rèn)是4M。useFullyQualifie
dRedirectUrl客戶端重定向不需要被自動轉(zhuǎn)換為完全限定格式。
-->

<httpRuntime appRequestQueueLimit="100" executionTimeout="80" maxRequestLength="4
0960"
useFullyQualifiedRedirectUrl="false"/>

<!--httpModules在一個(gè)應(yīng)用程序內(nèi)配置 HTTP 模塊。-->

<httpModules>

<add name="OutputCache" type="System.Web.Caching.OutputCacheModule" />

<add name="Session" type="System.Web.SessionState.SessionStateModule" />

<add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationM
odule"
/>

<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" />

<add name="PassportAuthentication" type="System.Web.Security.PassportAuthenticationMo
dule"
/>

<add name="RoleManager" type="System.Web.Security.RoleManagerModule" />

<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />

<add name="FileAuthorization" type="System.Web.Security.FileAuthorizationModule" />

<add name="AnonymousIdentification" type="System.Web.Security.AnonymousIdentificatio
nModule"
/>

<!--自定義的URL重寫,type基本上就是dll名-->

<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.U
rlRewriter"
/>

<add name="Profile" type="System.Web.Profile.ProfileModule" />

</httpModules>

<!--httpHandlers用于根據(jù)用戶請求的URL和HTTP謂詞將用戶的請求交給相應(yīng)的處理程序。可以在配置級別的任何
層次配置此節(jié)點(diǎn),也就是說可以針對某個(gè)特定目錄下指定的特殊文件進(jìn)行特殊處理。

add:指定映射到處理程序的謂詞/路徑。clear:移除當(dāng)前已配置或已繼承的所有處理程序映射。remove:移除映射到
處理程序的謂詞/路徑。remove 指令必須與前一個(gè) add 指令的謂詞/路徑組合完全匹配。該指令不支持通配符。
-->

<httpHandlers>

<remove verb="*" path="*.asmx"/>

<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandl
erFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3
856ad364e35"
/>

<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.
ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKey
Token=31bf3856ad364e35"
/>

<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResou
rceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31
bf3856ad364e35"
validate="false"/>

<add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2"/>

</httpHandlers>

<!--為 Web 應(yīng)用程序使用的 Cookie 配置屬性。domain:設(shè)置 Cookie 域名。httpOnlyCookies:在 Interne
t Explorer 6 SP1 中啟用 HttpOnlyCookies Cookie 的輸出。默認(rèn)值為 false。requireSSL:獲取一個(gè)指示是否需
要安全套接字層 (SSL) 通信的值.
-->

<httpCookies httpOnlyCookies="false" requireSSL="false"/>

<!--控制 ASP.NET Web 服務(wù)及其客戶端的行為。protocols:指定傳輸協(xié)議,ASP.NET 可使用這些傳輸協(xié)議來解
密 HTTP
-->

<webServices>

<protocols>

<add/>

</protocols>

</webServices>

<!--為 Web 應(yīng)用程序配置緩存設(shè)置。cache:定義全局應(yīng)用程序緩存設(shè)置。outputCache :指定應(yīng)用程序范圍的輸
出緩存設(shè)置。outputCacheSettings:指定可以應(yīng)用應(yīng)用程序中頁的輸出緩存設(shè)置。 sqlCacheDependency:為 AS
P.NET 應(yīng)用程序配置 SQL 緩存依賴項(xiàng)。
-->

<caching>

<cache disableMemoryCollection = "false" disableExpiration = "false" privateBytesLimit = "0"
 percentagePhysicalMemoryUsedLimit
= "90" privateBytesPollTime = "00:02:00"/>

<!--設(shè)計(jì)需要以這種方式緩存的頁時(shí),您需要向該頁添加以下指令:<%@ OutputCache CacheProfile="Ser
verOnly" %>
-->

<outputCacheSettings>

<outputCacheProfiles>

<add name="ServerOnly" duration="60" varyByCustom="browser" location="Server" />

</outputCacheProfiles>

</outputCacheSettings>

</caching>

</system.web>

</location>

<!--網(wǎng)絡(luò)設(shè)置,authenticationModules:指定用于對 InterNET 請求進(jìn)行身份驗(yàn)證的模塊。connectionManage
ment:指定與 InterNET 宿主的連接的最大數(shù)目。defaultProxy:配置超文本傳輸協(xié)議 (HTTP) 代理服務(wù)器

mailSettings:配置簡單郵件傳輸協(xié)議 (SMTP) 郵件發(fā)送選項(xiàng)。requestCaching:控制網(wǎng)絡(luò)請求的緩存機(jī)制。setti
ngs:配置 System.NET 的基本網(wǎng)絡(luò)選項(xiàng)。
-->

<system.NET>

<!--配置SMTP電子郵件設(shè)置-->

<mailSettings>

<smtp from="weipeng">

<NETwork host="Gao" password="" userName="" />

</smtp>

</mailSettings>

<!--禁用所有緩存-->

<requestCaching disableAllCaching="true"></requestCaching>

<!--指定代理地址,并對本地訪問和 contoso.com 跳過代理。-->

<defaultProxy>

<proxy usesystemdefault="True" proxyaddress="http://192.168.1.10:3128" bypassonlocal=
"True"
/>

<bypasslist>

<add address="[a-z]+".contoso".com" />

</bypasslist>

</defaultProxy>

</system.NET>

<!--該節(jié)替換在 httpHandlers 和 httpModules 節(jié)中添加的與 AJAX 相關(guān)的 HTTP 處理程序和模塊。該節(jié)使 IIS
 7.0 在集成模式下運(yùn)行時(shí)可使用這些處理程序和模塊。在iis7.0 下運(yùn)行 ASP.NET AJAX 需要 system.webServer

節(jié)。對早期版本的 IIS 來說則不需要此節(jié)。
-->

<system.webServer>

<validation validateIntegratedModeConfiguration="false"/>

<modules>

<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.Scri
ptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856
AD364E35"
/>

</modules>

<handlers>

<remove name="WebServiceHandlerFactory-Integrated"/>

<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
type
="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0,
 Culture=neutral, PublicKeyToken=31BF3856AD364E35"
/>

<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondit
ion
="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Exte
nsions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
/>

<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="Script
Resource.axd"
type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Ve
rsion=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
/>

</handlers>

</system.webServer>

<!--ASP.NET AJAX 中配置 ASP.NET 服務(wù)-->

<system.web.extensions>

<!--配置 JSON 序列化-->

<scripting>

<webServices>

<jsonSerialization maxJsonLength="5000"/>

</webServices>

</scripting>

</system.web.extensions>

<!--對WCF的相關(guān)配置-->

<system.serviceModel>

<services>

<service name="WCFStudent.WCFStudentText" behaviorConfiguration="ServiceBehavior">

<!-- Service Endpoints -->

<endpoint address="" binding="wsHttpBinding" contract="WCFStudent.IStuServiceContract">

<!-- 部署時(shí),應(yīng)刪除或替換下列標(biāo)識元素,以反映在其下運(yùn)行部署服務(wù)的標(biāo)識。刪除之后,WCF 將自動推導(dǎo)相應(yīng)
標(biāo)識。
-->

<identity>

<dns value="localhost"/>

</identity>

</endpoint>

<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>

</service>

</services>

<behaviors>

<serviceBehaviors>

<behavior name="ServiceBehavior">

<!-- 為避免泄漏元數(shù)據(jù)信息,請?jiān)诓渴鹎皩⒁韵轮翟O(shè)置為 false 并刪除上面的元數(shù)據(jù)終結(jié)點(diǎn) -->

<serviceMetadata httpGetEnabled="true"/>

<!-- 要接收故障異常詳細(xì)信息以進(jìn)行調(diào)試,請將以下值設(shè)置為 true。在部署前設(shè)置為 false 以避免泄漏異常信息-->

<serviceDebug includeExceptionDetailInFaults="false"/>

</behavior>

</serviceBehaviors>

</behaviors>

</system.serviceModel>

<!--URL重定向-->

<rewriter>

<rewrite url="~/user/u(.+).ASPx" to="~/user/index.ASPx?r=$1" />

<rewrite url="~/ask/q(.+).ASPx" to="~/home/ask/content.ASPx?id=$1" />

<rewrite url="~/blog/b(.+).ASPx" to="~/home/blog/article.ASPx?r=$1" />

<rewrite url="~/news/n(.+).ASPx" to="~/home/news/content.ASPx?nid=$1" />

<rewrite url="~/default.ASPx" to="~/home/ram/NET.ASPx" />

</rewriter>

</configuration>

NET技術(shù)Web.config配置文件詳解,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 97午夜理论片影院在线播放 | 久久精品小视频 | 国产ts在线 | 美国一级大黄一片免费的网站 | 国产午夜精品久久理论片小说 | 亚洲高清免费在线观看 | 好爽胸大好深好多水 | 在线 国产 欧美 专区 | 国产精品久久久久久久人人看 | 印度12 13free | 色偷偷亚洲男人天堂 | 翁公吮她的花蒂和奶水 | 国产乱人偷精品视频A人人澡 | 亚洲精品国偷拍自产在线观看蜜臀 | 好姑娘BD高清在线观看免费 | 不用播放器的黄 | 加勒比一本之道高清视频在线观看 | 果冻传媒在线观看网站 | 中国老太婆xxxxx | 美女诱惑性感揉胸 | 国产在线高清视频无码 | 两个奶被男人揉了一个晚上 | 国产69精品久久久久乱码韩国 | 最新国产精品福利2020 | 琪琪SEE色原网色原网站18 | 亚洲中文无码亚洲人在线观看- | 亚洲精品一本之道高清乱码 | 13一18TV处流血TV | 岛国精品在线观看 | 91精品乱码一区二区三区 | 久久偷拍免费2017 | 91天堂国产在线 在线播放 | 国内九一激情白浆发布 | 老师那里好大又粗h男男 | 精品久久久久中文字幕 | 成人公开免费视频 | 欧美激情一区二区三区AA片 | 探花口爆颜射乳交日韩 | 色橹橹欧美在线观看视频高 | 少妇精品久久久一区二区三区 | 他揉捏她两乳不停呻吟口述 |