Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Problem in opening a new browser window

0 views
Skip to first unread message

nas...@hotmail.com

unread,
Aug 24, 2006, 8:55:07 PM8/24/06
to
Hello,

I have a aspx page on which I have a button. In the click event method
in code-behind I do some processing and now need to open a new window
in another browser and pass a couple of parameters.


I included in my aspx file, the following js function:


function OpenChecklist(strCaseID)
{
var url = "/ABC/DEF.aspx?qsSubjectID=" + strSubjectID
var f =
"width=700,height=450,left=75,top=75,status=no,toolbar=no,menubar=no,locati­on=no";

window.open(url,"Subject Checklist",f)

}


My codebehind has the following
Public Sub cmdSubject_ServerClick(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles cmdSubject.ServerClick

--do some processing here
-- now would like a way to call the method (passing some parameters)
and opening a new browser window


End Sub


Now how do I call this function, not from the onclick() event but from
within the click event procedure?


One way I was told is using onload function. Would appreciate is
someone could provide some more details on how to do this?

Kris

unread,
Sep 7, 2006, 10:15:14 AM9/7/06
to
Use
RegisterClientScriptBlock method. Hope this would help.

Thanks,
Kris
http://www.bitlasworld.com/

0 new messages