雖然我指定的文本標籤(lblDoc),用於儘管我更改了標籤的文字,但它仍然返回初始值,我該如何解決?
<%FillRpt(rpt, lblDoc.Text , UserId);%>
lblDoc.Text是標籤。
<asp:Label ID="lblDoc" runat="server" Text="Label" Visible="false"></asp:Label>
我改變了Text值,但仍然返回「Label」。我該如何改變它?
的情況下低於:
$.ajax({
type: "POST",
url: "FileManager.aspx/foo",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
$("#<%=lblDoc.ClientID%>").text(selectedPath);
<%FillRpt(rpt, lblDoc.Text , UserId);%>
},
});
替代方法,它解決了這個問題。 – 2012-08-01 05:28:51