How to execute aspx file within html using iframe - html

i am having a contact.html page which is hosted in IIS .Now i need to refer aspx page using iframe which performs some process.is there any possibility to call aspx page if so how can i link in IIS ?
How to build aspx page to link with html page?
if i link using iframe the error displays as below:
Server Error in '/' Application.
Runtime Error
An application error occurred on the server. The current custom error
settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could,
however, be viewed by browsers running on the local server machine.

Related

Report Server web service is not marked up

I have installed SSRS 2019. I can browse to the local web portal URL which is http://av/Reports/browse/
and get the usual message of:
You are not allowed to view this folder. Contact your administrator to
obtain the necessary permissions.
So then I load up another browser as administrator and try get to the web service URL to give myself permission :
http://localhost/reportserver
but I just keep getting a page with no markup. See the image. What else am I missing here? Im not getting any error but also I am unable to administer the report server.

Display Authenticated User in HTML page

I have a HTML page hosted on my internal network for some basic information. Its a static HTML page hosted on IIS as an Website. I have Windows Authentication enabled and Anonymous Authentication disabled. My default document is index.html. I am trying to display the authenticated user after logging in. I don't have a test as everything I have found mentions the use of PHP files or js scripts, but I only have the index.html file. Is this possible at all, or do I need to look at alternatives?

jsp page is not loaded from html page

jsp page is not loaded instead the browser shows "com.mysql.jdbc.Driver". Database is connected to MySQL query browser from Netbeans 8.1. Why the page is not loaded? What is the remedy?
Some of the possible Issues :-
JDBC Driver i.e thin driver seems to be missing or not getting loaded while establishing the connection using JDBC Code in your JSP File.
Try to do the following as mentioned below:-
1.Add your mysql-connector-java-5.1.13-bin.jar in the LIB folder of your Java Project .
2.Right click in you project; click on "Clean and Build";
After that go to the netbeans project folder;
3.Try executing a Your Project and your JSP page should be able to connect to the DB using JDBC API Code.

jQuery not loading in Yii2

I first deployed my application to a shared server on Godaddy and everything was working perfectly. I just moved to a dedicated server still on Godaddy and am experiencing jQuery issues. I cannot search in Gridview. The error in the console is
Uncaught TypeError: jQuery(...).yiiGridView is not a function
I have tried clearing the assets folders in web/assets same issue.
When i change my index.php to development mode, i get an Internal Server Error and nothing displays.
When i change my index.php to production mode, the site loads but i cannot perform any jQuery function.
Any suggestions?

Windows Form User Control is not displaying at client pc in web page after deploy of website on server

I have a Windows Form User Control containing a button, I added it to my website using:
<object id="UserControl" classid="http:TestControlLibrary.dll#TestControlLibrary.UserControl1" height="100" width="100"></object>
When i run my website in development environment using localhost, every thing is working fine.
when i publish my website on server and access it using http://<ipaddress:port>/page.aspx on server itself it is working fine.
but, when i access my web site from client pc it is not showing button in web page.
How to show this button in web page on client pc.
Found the solution,
My site should be included in the trusted sites list of the browser.