我有两个WCF服务调用:
[OperationContract]
void ClosePeriod();
[OperationContract]
string GetLogs();
ClosePeriod方法运行一个需要1小时的存储过程,并生成日志消息。 GetLogs方法返回从ClosePeriod方法生成的日志消息。
我正在尝试在等待ClosePeriod服务调用时在ASP.Net网页上显示日志消息。
<asp:UpdatePanel ID="UpdatePanelClosing" runat="server">
<ContentTemplate>
<asp:Timer ID ="TimerLog" runat ="server" Interval ="3000" OnTick="TimerLog_Tick" Enabled="true"></asp:Timer>
<table>
<tr>
<td>
<div style="margin-top: 10px; margin-bottom: 70px">
<asp:Button runat="server" ID="BtnExecuteClosing" Text="Execute" Width="105px" Height="35px" OnClick="BtnExecuteClosing_Click" />
</div>
</td>
</tr>
<tr>
<td>
<p>Process Log:</p>
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="TxtProcessLog" runat="server" Width="930px" Height="270" TextMode="MultiLine" Style="resize: none;"
ReadOnly="true" Text="">
</asp:TextBox>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
到目前为止,我试图异步调用ClosePeriod方法,并尝试使用计时器更新TxtProcessLog文本框。
protected async void BtnExecuteClosing_Click(object sender, EventArgs e)
{
await webservice.ClosePeriodAsync();
}
protected void TimerLog_Tick(object sender, EventArgs e)
{
string log = webservice.GetLogs();
TxtProcessLog.Text = log ;
}
但是,在ClosePeriod服务调用完成后,TxtProcessLog文本框会更新。 难道我做错了什么?请建议任何其他方法。
答案 0 :(得分:1)
ClosePeriod做什么?将许多日志写入数据库表? 那你的代码应该可以正常工作。 如果“webservice.GetLogs()”返回string.empty,则不会显示任何内容。 来自UpdatePanel的ClosePeriod调用应该是异步的,否则将阻止所有后续调用。