Jump to content

UniURLFrame show page with sso


EDOM

Recommended Posts

I put several UniURLFrames on the screen and want to implement page data from external websites
These pages require prior login
How do I implement this function, after executing single sign-on, all UniURLFrames can be displayed normally without login again


The old .ASP code is written as follows

<body>

  <div class="widget-content">
    <iframe name=I10 frameborder=0 height=160 src="http://xxxx.com/ehr/index/birthday.asp" width=100%></iframe>
  </div>

  <div class="widget-content">
    <iframe name=I20 frameborder=0 height=160 src="http://xxxx.com/ehr/index/visitor.asp" width=100%></iframe>
  </div>

  <FRAMESET ROWS="0,0,0,0" FRAMEBORDER="0" BORDER="0">
    <!-- single sign-on  -->
    <FRAME NAME="hrmportal" SCROLLING="no" NORESIZE="yes" SRC="http://xxxx.com/ehr/login.asp?employee_id=<%=Session("employee_id")%>">
  </FRAMESET>

</body>

Link to comment
Share on other sites

×
×
  • Create New...