Ask our Experts
Didn't find what you are looking for? Ask our experts!
Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!
Ask questions, get advice from experts and peers on Digital Automation & Energy Management.
Search in
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-09 04:39 PM
Hello,
I am programming a BMS on a Schneider electric AS-P 3.2.3.59 controller and I need to use a hyperlink or something like that. Fan Coils have their vendor internet web server on a cloud, and at least I want to add a button to my BMS, which could open other web pages. Can you tell me how is it possible to do this in a graphic?
I found a perfect solution for this task - a hyperlink that can open a webpage in my BMS. It could help my system to look solid. But there is a problem, when I log in to a fan coil vendor system via my BMS, I am immediately logged out. I noticed that the only browser that does not log out is firefox, but it is not popular.
Can you help me please?
Fancoil vendor web server: http://www.aircontrolbase.com/login.html
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-13 06:27 PM
Modern browsers block content in an iFrame using “X-Frame-Options: SAMEORIGIN" response header for security reasons. https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy.
A potential workaround is to use the JavaScript openFile( ) function to open the URL in a new browser window.
function onMouseClick(evt)
{
openFile("https://yourwebsite.com","Open");
}
Link copied. Please paste this link to share this article on your social media post.
You’ve reached the end of your document
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.