Hi All, We are getting the remote scripting error “REMOTE SCRIPTING ERROR: Page Invoked does not support Remote Scripting.†in our application. So we have followed the below procedure to find whether issue from remote scripting or application end. 1. Created an Active Server Pages (ASP) page “Sample_server.asp†in our Website with the following code: <%@ LANGUAGE=VBSCRIPT %> <!--#include file="_ScriptLibrary/rs.asp"--> <% RSDispatch %> <SCRIPT Language=JavaScript RUNAT=SERVER> var public_description = new myFunction(); function myFunction() { Document.Write("Test Function"); } </SCRIPT> 2. Created an HTML page in our Website “Sample_client.htm†with the following code: <HTML> <BODY> <SCRIPT Language="JavaScript" src="_ScriptLibrary/rs.htm"></SCRIPT> <h2>Sample Remote Scripting Client</h2> <SCRIPT LANGUAGE="javascript"> RSEnableRemoteScripting(); var serverURL = "sample_Server.asp"; function myTest() { var RSObj = RSExecute(serverURL, "myFunction"); if (RSObj.status != 0) { WriteError(RSObj.data); } } function WriteError(strHTML) { var w = window.open("","error_window","width=500,height=300,toolbar=no,location=no,directories=no,status=no,menubar=no") w.document.write("<HTML>"); w.document.write("<BODY>"); w.document.write("<CENTER>"); w.document.write("<H2>Remote Scripting Call Returned the following:</H2>"); w.document.write("<TABLE border=1 cellpadding=10 bgcolor=#dddddd><TR><TD>"); w.document.write(strHTML) w.document.write("</TD></TR></TABLE>"); w.document.write("<FORM><INPUT type=button value=\" OK \" onclick=self.close()></FORM>"); w.document.write("</CENTER>"); w.document.write("</BODY>"); w.document.write("</HTML>"); } </SCRIPT> <form> <input type=button name=rstest value=" Go " onclick="myTest()"> </form> </BODY> </HTML> 3. Opened Sample_client.htm from browser (IIS). We are getting the error as mentioned in the top. Note: _ScriptLibrary folder exists in wwwroot folder. Please let me know if you have come across the same issue and got any resolution for it.