Good,
I have the following code, in a function Javascript
,
function(){
var noDataIcon = document.createElement("img");
noDataIcon.src = "~/Images/delete_database.png";
}
It happens to give me an error in src, can not find the image.
How do I solve this problem?
Thank you