Ask a Question related to ASP.NET General, Design and Development.
-
Daniel Morrissey #1
Setting Window Title On New Window
Why will the following code not change the window title of the new window?
window.open "Default.htm" ,"YO"
Daniel Morrissey Guest
-
Title Window Resizable
I have the code that allows you to create a ResizableTitleWindow. If anyone would be interested in this please let me know and I'll share the basic... -
How to get the browser window title or the http url?
I have a web application which opens a selected/given PDF file in a web browser. Example Url:... -
How to turn off the title bar on a MIAW window?
In my projector the end-user can click on a button to open a MIAW window. I want the MIAW window to open up without its titlebar but, unfortunatelly... -
Changing Projector icon and title in task bar and alt-tab-window?
Is there a tool to change the projector icon und title to display both correct in the task bar and in the window, when switching between... -
Application Window Title
Does anyone know how to change the Window title for a standalone flash player .exe? I am publishing this app as an exe and would like to specify a... -
William F. Robertson, Jr. #2
Re: Setting Window Title On New Window
Is "YO" not being put in the title of the browswer. It should be with the
IE setting title name appended to it.
Unless there is a broswer setting that is preventing it, syntaxtically that
is correct.
bill
"Daniel Morrissey" <danmorrissey@cfl.rr.com> wrote in message
news:OPCtdwiSDHA.560@TK2MSFTNGP10.phx.gbl...> Why will the following code not change the window title of the new window?
>
> window.open "Default.htm" ,"YO"
>
>
William F. Robertson, Jr. Guest
-
Daniel Morrissey #3
Re: Setting Window Title On New Window
No, "YO" is not showing up in the browser title. Also, if the variable that
I pass to the title argument of the open method contains a space, I get an
error in the browser's status panel.
"William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
news:OtOP5ijSDHA.1252@TK2MSFTNGP10.phx.gbl...that> Is "YO" not being put in the title of the browswer. It should be with the
> IE setting title name appended to it.
>
> Unless there is a broswer setting that is preventing it, syntaxticallywindow?> is correct.
>
> bill
>
> "Daniel Morrissey" <danmorrissey@cfl.rr.com> wrote in message
> news:OPCtdwiSDHA.560@TK2MSFTNGP10.phx.gbl...> > Why will the following code not change the window title of the new>> >
> > window.open "Default.htm" ,"YO"
> >
> >
>
Daniel Morrissey Guest
-
Vidar Petursson #4
Re: Setting Window Title On New Window
Hi
This is the name of the window not the title
<title>MyWindow</title>
So you have to set the title....
Probably you can do this in the child
document.write("<title>" + window.name + "</title>");
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Daniel Morrissey" <danmorrissey@cfl.rr.com> wrote in message
news:OzYqP2tSDHA.1912@TK2MSFTNGP12.phx.gbl...that> No, "YO" is not showing up in the browser title. Also, if the variablethe> I pass to the title argument of the open method contains a space, I get an
> error in the browser's status panel.
>
> "William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
> news:OtOP5ijSDHA.1252@TK2MSFTNGP10.phx.gbl...> > Is "YO" not being put in the title of the browswer. It should be with> that> > IE setting title name appended to it.
> >
> > Unless there is a broswer setting that is preventing it, syntaxtically> window?> > is correct.
> >
> > bill
> >
> > "Daniel Morrissey" <danmorrissey@cfl.rr.com> wrote in message
> > news:OPCtdwiSDHA.560@TK2MSFTNGP10.phx.gbl...> > > Why will the following code not change the window title of the new>> >> > >
> > > window.open "Default.htm" ,"YO"
> > >
> > >
> >
>
Vidar Petursson Guest



Reply With Quote

