Ask a Question related to ASP.NET Security, Design and Development.
-
Tersia Ehlert #1
HTTPS - Window. code not working anymore
Hi
I have an .NET web application where I redirect a page on submit to a blank page where the code below runs client side.
I want to, with this code, refresh two frames - the one my page was opened in and another frame loading a list of items assigned to me.
This code was working 100% until we chnaged the site to a secure site (HTTPS) - now it seems that I cannot use window. anumore in code.
Does anyone know who I can overcome this issue?
Thanks
Tersia Ehlert
function window_onload()
' Sets variable equal to obj - worklist.aspx
dim workspacePage
dim itemClosedPage
workspacePage = "k2v3/workspace/worklist.aspx"
itemClosedPage = "k2v3/workspace/worklist/itemclosed.aspx"
'// Find where the parent application (K2.net Workspace) was installed and
'// and get the ItemClosed.aspx location
dim loc
on error resume next
loc = LCase(window.parent.location.toString())
if err.number > 0 then
'// Cannot continue
loc = "ERROR"
end if
'Check if this pages is housed inside the K2.net workspace
if instr(1, loc, workspacePage) > 0 then
dim newloc
newloc = Replace(loc, workspacePage, itemClosedPage)
'// Display the ItemClosed.aspx page
window.location = newloc
'// Refresh the WorkList frame in the K2.net Workspace
dim itmFrame
set itmFrame = window.parent.frames("ItemsFrame")
itmFrame.location.reload
else
window.close
end if
End Function
Tersia Ehlert Guest
-
FlashVars not working in CS3 anymore?
Ok, I'm at the end of my patience and is considering to bring ducktape, some napalm and a lot of matches to this party. :evil; I'm using Flash... -
WinHttp is not working anymore
Hello I have a web script that use WinHTTP object that was working perfect until i install SharePoint and Project Sever. After i Install this... -
[PHP] $_SELF[PHP_SELF] not working anymore
Try with $_SERVER -----Mensaje original----- De: Maria Garcia Suarez Enviado el: martes, 16 de septiembre de 2003 15:26 Para:... -
$_SELF[PHP_SELF] not working anymore
Hi there! I'm currently developing some pages where I use $_SELF, always without any kind of problem (until some days ago). Some days ago, as... -
URGENT: cookies not working anymore!
hello, any idea why the following code does not work?!! <? $cookieExpire = 864000000; setcookie("a", "love", $cookieExpire);... -
Brad Roberts #2
RE: HTTPS - Window. code not working anymore
This is probably security related. Try it with your web site in Trusted
Sites. The browser security settings may be preventing you from doing
anything malicious(useful).
"Tersia Ehlert" wrote:
> Hi
>
> I have an .NET web application where I redirect a page on submit to a blank page where the code below runs client side.
>
> I want to, with this code, refresh two frames - the one my page was opened in and another frame loading a list of items assigned to me.
>
> This code was working 100% until we chnaged the site to a secure site (HTTPS) - now it seems that I cannot use window. anumore in code.
>
> Does anyone know who I can overcome this issue?
>
> Thanks
> Tersia Ehlert
>
> function window_onload()
>
> ' Sets variable equal to obj - worklist.aspx
>
> dim workspacePage
>
> dim itemClosedPage
>
>
> workspacePage = "k2v3/workspace/worklist.aspx"
>
> itemClosedPage = "k2v3/workspace/worklist/itemclosed.aspx"
>
>
> '// Find where the parent application (K2.net Workspace) was installed and
>
> '// and get the ItemClosed.aspx location
>
> dim loc
>
> on error resume next
>
> loc = LCase(window.parent.location.toString())
>
> if err.number > 0 then
>
> '// Cannot continue
>
> loc = "ERROR"
>
> end if
>
>
> 'Check if this pages is housed inside the K2.net workspace
>
> if instr(1, loc, workspacePage) > 0 then
>
> dim newloc
>
> newloc = Replace(loc, workspacePage, itemClosedPage)
>
>
> '// Display the ItemClosed.aspx page
>
> window.location = newloc
>
> '// Refresh the WorkList frame in the K2.net Workspace
>
> dim itmFrame
>
> set itmFrame = window.parent.frames("ItemsFrame")
>
> itmFrame.location.reload
>
> else
>
> window.close
>
> end if
>
>
>
> End Function
>Brad Roberts Guest



Reply With Quote

