我遇到了asp:SqlDataSource的问题。我试图根据开始和结束日期提取一些数据。我希望这些数据可以在最后24小时内完成,但是现在我只是想把它全部拉回来进行测试。我有两个asp:TextBox控件,一个开始日期和一个结束日期。
没什么特别的,应该很简单......
我的问题是将Stored Procedure param绑定到asp:TextBox。 TextBox将我在文本框中输入的文本放入' Text'属性。似乎有意义,但问题是asp将此控件转换为输入标记,然后将输入的文本放入值属性。
现在,在配置SqlDataSource时,它想要使用实际页面上不存在的controlName.Text。它的controlName.value。
如果我尝试将asp:ControlParameter绑定到controlName.value,我会收到一条错误消息,指出该值不是TextBox的属性。这是正确的...这是一个输入的属性,这将是...所以它不会让我这样做。
如果我只是直接的SQL查询,我会收回数据。当我使用所有默认值测试存储过程时,我得到了数据。一旦我控制住了,我什么也得不到。我确实处理了传入日期字段的空值和空字符串,所以我不认为它是这样的。
简而言之,我迷失了。帮助!
初始HTML:
<asp:TextBox ID="startDate" Width="10em" runat="server" AutoPostBack="true"></asp:TextBox>
生成的HTML:
<input type="text" style="width:10em;" id="startDate" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;" onchange="javascript:setTimeout('__doPostBack(\'startDate\',\'\')', 0)" value="2000/07/13 00:00" name="startDate">
失败:
<asp:SqlDataSource ID="employeesSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:DbConnectionString %>" SelectCommand="SPRT_GetRecords" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:ControlParameter ControlID="startDate" Name="StartDate" PropertyName="Text" Type="DateTime" />
<asp:ControlParameter ControlID="endDate" Name="EndDate" PropertyName="Text" Type="DateTime" />
<asp:Parameter Name="GetLogs" Type="Boolean" />
<asp:Parameter Name="LogType" Type="Decimal" />
</SelectParameters>
</asp:SqlDataSource>
失败:
<asp:SqlDataSource ID="employeesSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:DbConnectionString %>" SelectCommand="SPRT_GetRecords" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter Name="StartDate" Type="DateTime" />
<asp:Parameter Name="EndDate" Type="DateTime" />
<asp:Parameter Name="GetLogs" Type="Boolean" />
<asp:Parameter Name="LogType" Type="Decimal" />
</SelectParameters>
</asp:SqlDataSource>
可以工作,但不会拉入控制输入:
<asp:SqlDataSource ID="employeesSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:DbConnectionString %>" SelectCommand="declare @SDate datetime
set @SDate = DateAdd(dd, -100, GetDate())
EXEC SPRT_GetRecords @StartDate = @SDate, @EndDate = null, @GetLogs = 0, @LogType = 0"></asp:SqlDataSource>
答案 0 :(得分:0)
你可以在按钮点击事件的代码中执行此操作吗?或者将它设为日期时间而不是字符串,然后执行相同的操作。
p = mp.Process(target = worker(i))
答案 1 :(得分:0)
好的,在与其他人讨论并且没有提出太多意见后,我能够以不同的视角看待并找出答案。
我认为因为我在我的存储过程中设置了默认值,所以我不必为可选参数指定值。这不是真的......
我的问题的解决方案是添加默认值。请注意,较低的两个asp:参数现在具有默认值。我希望这会抛出一个错误让它冒泡到我而不是默默地炸毁并且不会返回任何结果。
<asp:SqlDataSource ID="employeesSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:DbConnectionString %>" SelectCommand="SPRT_GetRecords" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:ControlParameter ControlID="startDate" Name="StartDate" PropertyName="Text" Type="DateTime" />
<asp:ControlParameter ControlID="endDate" Name="EndDate" PropertyName="Text" Type="DateTime" />
<asp:Parameter DefaultValue="false" Name="GetLogs" Type="Boolean" />
<asp:Parameter DefaultValue="0" Name="LogType" Type="Decimal" />
</SelectParameters>
另外,我在Page_Load方法中设置开始/结束日期的默认值,如下所示:
if (!IsPostBack)
{
// Default the grid to the last 24 hours worth of data
employeesSqlDataSource.SelectParameters["startDate"].DefaultValue = DateTime.Now.AddDays(-1).ToString();
employeesSqlDataSource.SelectParameters["endDate"].DefaultValue = DateTime.Now.ToString();
...
...
}
要使按钮起作用,我只是在进行一些验证,然后在onclick上的SqlDataSource上调用DataBind()。
protected void searchButton_Click(object sender, EventArgs e)
{
CheckDates();
if (string.IsNullOrEmpty(startDate.Text)) employeesSqlDataSource.SelectParameters["startDate"].DefaultValue = SqlDateTime.MinValue.ToString();
if (string.IsNullOrEmpty(endDate.Text)) employeesSqlDataSource.SelectParameters["endDate"].DefaultValue = SqlDateTime.MaxValue.ToString();
employeesSqlDataSource.DataBind();
}
重要的一点是最后一行。
希望这可以帮助其他有需要的人。