Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Mario #1
ASP.NET Popup Windows
Need help with creating a popup windwo in ASP.NET when I load a page?
This is what I have so far
<SCRIPT language="javascript">
function OpenWindow()
{
var x =
window.open('MRFilingStatus.aspx','FS','width=425, height=200,resizeable=yes,menubar=0,toolbar=0')
x.focus
}
</SCRIPT>
Then in my body tag I have "onload=OpenWindow"
<body MS_POSITIONING="GridLayout" onload="OpenWindw" leftmargin="0"
topmargin="0">
Mario Guest
-
Popup Windows
Hi, I have an ASP application. On one of my pages I have a link to a popup. This popup has a link. When the user clicks this link my popup... -
Flash/Director PopUP Windows
I'm designing popup windows in flash and importing them as swf in director/shockwave. to make them visibile on the director stage i use this... -
Popup-Windows over the net
Which is the best way to make pop-up windows that calls other files, like Flash,Quicktime.........and more over the internet? -
How to return a keyvalue from popup windows with datagrid control to parent windows through JavaScript?
How to return a keyvalue from popup windows with datagrid control to parent windows through JavaScript? -
A Discovery with PopUp Windows
I recently discovered that when you view a popup in IE -vs- Netscape, The window in Netscape previews approx. 1/8" smaller from the right and from... -
S.M. Altaf [MVP] #2
Re: ASP.NET Popup Windows
First, please avoid posting the same question in different places. You'll
get the same answer from different people, and often they'll end up
conflicting, or they'll confuse you. In some cases they might even open up
a wormhole in the time space continuum which might collapse upon itself.
:-(
<SCRIPT language="javascript">
function OpenWindow()
{
var x =
window.open('MRFilingStatus.aspx','FS','width=425, height=200,resizeable=yes,menubar=0,toolbar=0');
}
</SCRIPT>
<body MS_POSITIONING="GridLayout" onload="OpenWindow();" leftmargin="0"
topmargin="0">
That should work.
S.M. Altaf
[MVP - VB]
--------------------------------------------------------------------------------
All that glitters has a high refractive index.
[url]www.mendhak.com[/url]
"Mario" <moone@charter.net> wrote in message
news:n7_4f.13237$nE2.2818@fe03.lga...> Need help with creating a popup windwo in ASP.NET when I load a page?
>
> This is what I have so far
>
> <SCRIPT language="javascript">
> function OpenWindow()
> {
> var x =
> window.open('MRFilingStatus.aspx','FS','width=425, height=200,resizeable=yes,menubar=0,toolbar=0')
> x.focus
> }
> </SCRIPT>
>
> Then in my body tag I have "onload=OpenWindow"
> <body MS_POSITIONING="GridLayout" onload="OpenWindw" leftmargin="0"
> topmargin="0">
>
>
>
S.M. Altaf [MVP] Guest
-
Scott M. #3
Re: ASP.NET Popup Windows
You must include the parenthesis in the function call as they are part of
the function's name.
"Mario" <moone@charter.net> wrote in message
news:n7_4f.13237$nE2.2818@fe03.lga...> Need help with creating a popup windwo in ASP.NET when I load a page?
>
> This is what I have so far
>
> <SCRIPT language="javascript">
> function OpenWindow()
> {
> var x =
> window.open('MRFilingStatus.aspx','FS','width=425, height=200,resizeable=yes,menubar=0,toolbar=0')
> x.focus
> }
> </SCRIPT>
>
> Then in my body tag I have "onload=OpenWindow"
> <body MS_POSITIONING="GridLayout" onload="OpenWindw" leftmargin="0"
> topmargin="0">
>
>
>
Scott M. Guest



Reply With Quote

