我正在尝试将我的网页(c#)移动到ISS 7.5服务器.
我已经读过我需要在WEBCONFIG中实现与sql server 2008的连接.
我已经这样做了.
这是我的WEBCONFIG
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionstrings>
<!-- <remove name="LocalSqlServer" /> -->
<add name="conexionsql" connectionstring="Data Source=FCH-DESARROLLO;Initial Catalog=DesaInterno;Integrated Security=True;User ID=usuario_de_conexion;Password=a"
providerName="System.Data.SqlClient"/>
</connectionstrings>
<system.web>
<!--<identity impersonate="true" /> -->
<compilation debug="true" targetFramework="4.5">
<assemblies>
<!-- <add assembly="System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> -->
<add assembly="*" />
</assemblies>
</compilation>
<!-- <httpRuntime targetFramework="4.5"/> -->
<!-- <authentication mode="Windows" /> -->
<authorization>
<deny users="?" />
</authorization>
</system.web>
<!-- <system.webServer> --> …Run Code Online (Sandbox Code Playgroud) 我试图从内部表中获取一个字段,如下所示:
READ TABLE tbl_peps TRANSPORTING ususap INTO lv_responsable WITH KEY usr03 = wa_tbl_prps-usr03.
Run Code Online (Sandbox Code Playgroud)
这句话错了,它给了我一个错误
tbl_peps和lv_responsable是不兼容的
.
有没有办法通过"运输领域"实现这一目标?
我正在使用此站点的日期时间选择器:http://eonasdan.github.io/bootstrap-datetimepicker,它工作正常.
我想要明天约会.
$(function () {
$('#datetimepicker1').datetimepicker({
format: "DD/MM/YYYY",
minDate: moment()
});
});
Run Code Online (Sandbox Code Playgroud)
这段代码效果很好,但日历让我今天选择..我希望它让我选择开始tomrrow.