[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

(Raj)

6/5/2002 2:00:00 AM

Hi,

We are doing an ASP .NET application using C# that is intended to
deploy both on desktop machines and on Pocket PC.

On one my web pages, I have a button that brings up a new lookup
window where user can search for a value and select the value. If they
select a value on the lookup window, it populates the selected value
onto the parent window's field and closes itself. For this, I have
written simple JavaScript (window.open(); window.close();) that does
all these. But, it doesn't work on Pocket IE.
When I click the button on my page, it doesn't open the new window.

Please help me to resolve this problem..

Thanks
Raj
1 Answer

Craig Deelsnyder

6/8/2002 5:29:00 AM

0

Pocket IE does not support the window.open() method (only one window). I
believe there's something called MultiIE (third-party) to allow something
like this.

See the following doc for helpful reference info:

http://www.microsoft.com/mobile/developer/technicalarticle...


"Raj" <rajmuthusamy@decadesoftware.com> wrote in message
news:8b65a342.0206041304.40a75676@posting.google.com...
> Hi,
>
> We are doing an ASP .NET application using C# that is intended to
> deploy both on desktop machines and on Pocket PC.
>
> On one my web pages, I have a button that brings up a new lookup
> window where user can search for a value and select the value. If they
> select a value on the lookup window, it populates the selected value
> onto the parent window's field and closes itself. For this, I have
> written simple JavaScript (window.open(); window.close();) that does
> all these. But, it doesn't work on Pocket IE.
> When I click the button on my page, it doesn't open the new window.
>
> Please help me to resolve this problem..
>
> Thanks
> Raj