How to read the appSettings from webconfig file
Hi,
How can i achieve this?
function refresh() {
document.getElementById("div-content-wrapper").innerHTML = "";
document.getElementById("page-content-wrapper").innerHTML = "";
$.ajax({
type: "GET",
dataType: "text",
crossDomain: true,
aysnch:true,
success: function (response) {
// Put the plain text in the PRE tag.
alert(response)
},
error: function (error) {
// Log any error.
console.log("ERROR:", error);
}
});
}
Thanks in Advance