您的位置:首页 > 数据库

web.config配置ajaxpro,sqlhelper

2009-12-12 11:03 302 查看
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="connstr" value="server=.;database=webshop;uid=sa;pwd="/>
</appSettings>
<connectionStrings>
<add name="conn" providerName="System.Data.SqlClient" connectionString="server=.;database=webshop;uid=sa;pwd="/>
</connectionStrings>
<system.web>

<compilation debug="true">
<assemblies>
</assemblies>
</compilation>
<authentication mode="Windows"/>

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>

<httpHandlers>
<add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/>
<add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></httpHandlers>
</system.web>
</configuration>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: