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?
Hi, I am trying to display 10 sets of records at once....so this is basically what I am trying to do. At the reponse.write statement, how do I specify the recordset based on the count...like rs1, rs2, rs3...etc? what is the syntax like? Also if my sql statement is select *, then how do I for...
This might be confusing, I will do my best to describe my problem. Heres the sql statement I am running...
select * from portal P, portal_title C where P.category = C.category AND (name like '%is%' or portal_keywords like '%is%')
I want to take one field from the recordset, and input it as a...
How come when I click on this it does not refresh the parent page, the child page closes, but the parent page does not move? What I am saying is that in the help.asp it does not move to the glossary section.
<a href="javascript:updateParent('Help.asp#glossary')" onClick =...
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.