I have some HTM code that takes input from a input box and passes it over to a ASP page to load up calendars.
But what I want to do is to use iFrames/frames so at the top is the HTML page and the value is then passed to the lower frame where the ASP lives.
But I have not done frames in years so not sure the code I need to use.
default.htm - This takes the username input
calendar.asp - This is the page the username is passed to
Any help is appricated
Thanks
Kimbie
But what I want to do is to use iFrames/frames so at the top is the HTML page and the value is then passed to the lower frame where the ASP lives.
But I have not done frames in years so not sure the code I need to use.
default.htm - This takes the username input
Code:
<HTML>
Please type the username of the calendar you wish to view
<form action="calendar.asp" method="post">
<input type="text" name="username"> <input type="submit">
</form>
</HTML>
calendar.asp - This is the page the username is passed to
Code:
<HTML>
<%
newURL = "https://mailsrv2.domain.co.uk/owa/" & Request.Form("username") & "@domain.co.uk/?cmd=contents&f=calendar"
Response.Redirect(newURL)
%>
</HTML>
Any help is appricated
Thanks
Kimbie