Hi all good morning
I have a new web application. I've setup the application and it's working on one server(xxx) but it's not working on another(yyy). I changed the web.config file(checked throughly and I've changed the connection string and appsettings).
What could be the error?
The login page is working but when I proceed a Javascript error occurs...
(Line: 48 Error: Object doesn't support this property or method)
Here's the code
function callCompForFileUpload(responseText)
{
document.getElementById("btnView").disabled = false;
var objFolderUpload = document.getElementById("FolderUpload");
var UploadURL = document.getElementById("HdnFolderUploadURL").value + "?rid=" + responseText;
// this is error line
objFolderUpload.ShowForm(UploadURL);
}
Thanks saj