I figured it out, may be you can use this method in the future. On the parent page I set it so that the parent is the opener.
window.opener = self;
window.open ('url');
Then in the child page, I called the parent to close.
window.opener.close();
By setting the parent to be the...
Hi I have an asp page which uses javascript to call window.open...How can I close the window automatically after window.open has been called?
Thanks!!!
Thanks for all the ideas guys, I think what JayKusch said is what I really need....I am trying to match 'sometext' in many different fields. So basically I am not checking it by 1 field column, instead I want to check is through all columns but without having to write 10 sql statements...
Thanks for all the ideas guys, I think what JayKusch is what I really need....I am trying to match 'sometext' in many different fields. So basically I am not checking it by 1 field column, instead I want to check is through all columns but without having to write 10 sql statements....
select *...
still need help...trying to show the correct range...is there a way to say like rs(10), rs(11), rs(12)...etc to show rows 10, 11, 12 and so on?
Is that even right syntax rs(10) equals to the tenth row?
I guess this questions good in between with vbscript/asp and sql coding. I am trying to check for blank or null on a recordset... the select statment returned blank when I ran it against sql analyzer. Yet when I check it in my asp code, I tried
check = isNULL(rs1("title")) //check...
I guess this questions good in between with vbscript/asp and sql coding. I am trying to check for blank or null on a recordset... the select statment returned blank when I ran it against sql analyzer. Yet when I check it in my asp code, I tried
check = isNULL(rs1("title")) //check...
How do I know that doing it this way the rs will return the right range...because I am trying to display 10 records at once...so the first set will be 1-10, and then 11-20...etc?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.