I have the follwing code
$.ajax({
type: "POST",
url: "/_Catalogs/MasterPage/GDetail.aspx/GetFundURL",
data: "{'cusip': '" +$('#<%= ddlShareClasses.ClientID %>').val() + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (message) {
$("#sample").html(message.d);
alert(message.d);
}, error: function (message) {
$("#sample").html(message.d);
}
});
Bloew is my Label
<asp:Label id="sample" runat="server"/`>
I want to bind message.d to label. with above code i can message have some url in alert but i am unable bind it
note: message.d is a hyperlink