Arhip ([info]arhip) wrote,
@ 2005-11-22 17:40:00
Previous Entry  Add to memories!  Tell a Friend!  Next Entry
Entry tags:programming

run ServerSide page within clientside js


  function getTextContent (url, contentHandler) { 
     var httpRequest; 
     if (typeof XMLHttpRequest != 'undefined') { 
       httpRequest = new XMLHttpRequest(); 
     } 
     else if (typeof ActiveXObject != 'undefined') { 
       try { 
         httpRequest = new ActiveXObject('Microsoft.XMLHTTP'); 
       } 
       catch (e) { 
         httpRequest = null; 
       } 
     } 
     if (httpRequest) { 
       httpRequest.open('GET', url, true); 
       httpRequest.onreadystatechange = function (evt) { 
         if (httpRequest.readyState == 4) { 
           contentHandler(httpRequest.responseText); 
         } 
       }; 
       httpRequest.send(null); 
     } 
   } 


//call test
getTextContent("/my/url/getAppList.aspx", function (text) { alert(text); })




(Post a new comment)


[info]papapadlo
2005-11-22 03:42 pm UTC (link)
Колбасит, зайк мой?:)

(Reply to this) (Thread)


[info]arhip
2005-11-22 03:44 pm UTC (link)
нет, почему :)
просто себе на память, что б потом не искать если что :)

т.е. америку тут не открыли, просто написанно красиво :)

(Reply to this) (Parent)(Thread)


[info]romanklimenko
2005-11-22 10:28 pm UTC (link)
колбасит колбасит!
Раньше бы фотку красивую выставил, о политике пару слов сказал.
А теперь что ни пост, все работа. Или ты новую фичу в Банк Апоалим поставить хочешь? ;-)

(Reply to this) (Parent)(Thread)


[info]arhip
2005-11-24 07:58 am UTC (link)
с фотками напряг..забыл уже когда с камерой из дома выходил, все некогда ;(
с политикой у нас - вообще кошмар, сам наверно слышал из новостей..

вот, только и осталось ..:)

(А Банк Хапоалим уже далекое прошлое, кстати, увы)

(Reply to this) (Parent)


[info]yelya
2005-11-22 04:12 pm UTC (link)
Не ругайся. :)

(Reply to this) (Thread)


[info]arhip
2005-11-22 04:29 pm UTC (link)
мнда, надо было приватом писать, как то народ разволновался..

(Reply to this) (Parent)


[info]sand_lar
2005-11-22 04:25 pm UTC (link)
а по русски?

(Reply to this) (Thread)


[info]arhip
2005-11-22 04:28 pm UTC (link)
запуск и использование странички на сервере из скрипта на клиенте ;)

(Reply to this) (Parent)


Create an Account
Forgot your login or password?
Login w/ OpenID
English • Español • Deutsch • Русский…