Frameset problem its very urgent........ [modified]
-
Hi in my project default page i am using frame set in that 3 html pages i included..., When run the project it will check login authentication.., If its correct user...,then in that default page head htmlpage my link buttons will display..., When i click in that link left side html page sub links will be display..., if i click any of the sub link then my aspx page will be display in that 3rd html page(right hand side)..., In this i said suppose the user didnt interact with some what time the forms then session will be end...,so it will transfer to login.aspx page..., But the login.aspx page is displaying on the right hand side of the frameset.., But when session will end i need only starting page login.aspx other head html page and left side html page all want to unload How to do this one plz tell me..., -- modified at 2:03 Thursday 19th April, 2007
Magi
-
Hi in my project default page i am using frame set in that 3 html pages i included..., When run the project it will check login authentication.., If its correct user...,then in that default page head htmlpage my link buttons will display..., When i click in that link left side html page sub links will be display..., if i click any of the sub link then my aspx page will be display in that 3rd html page(right hand side)..., In this i said suppose the user didnt interact with some what time the forms then session will be end...,so it will transfer to login.aspx page..., But the login.aspx page is displaying on the right hand side of the frameset.., But when session will end i need only starting page login.aspx other head html page and left side html page all want to unload How to do this one plz tell me..., -- modified at 2:03 Thursday 19th April, 2007
Magi
.net does not support frame concepts. so you can use this statement i have test it with framework 2.0 c# -- if (Session.IsNewSession) { Response.Write("top.location='login.aspx';"); } vb.net -- If (Session.IsNewSession) then Response.Write("top.location='login.aspx';") End If