Hi,
it depends on what you want to do! Why are you using Outlook or any
other mail application? Because you save time to concentrate on your
job. Yes, you can write your own mail application but you have to
start with less features and you will have the same problems, bugs,
... like other mail applications have/had.
So, using XmlHttpRequest is great, AjaxPro is doing the same, but
AjaxPro enables developers to concentrate on your web application,
write your methods (or use existing one).
Why did I developed AjaxPro? Because there was no framework available
that did that job for me.... :(
Regards,
Michael
On 10/3/06, kamal101 <[EMAIL PROTECTED]> wrote:
>
> Hello Geeks, is anyone can comment this technique ajax. What's the
> better one ?
> XMLHttp or Ajax.Net library ? I found XMLHttp pretty simpe to use,
> ajaxpro.dll cannot be hosted on a server because of security reasons.
>
> //AJAX
> var XMLHttp=null
> try
> {
> XMLHttp = new ActiveXObject("Msxml2.XMLHTTP")
> }
> catch(e)
> {
> try
> {
> XMLHttp = new ActiveXObject("Microsoft.XMLHTTP")
> }
> catch(e)
> {
> //
> }
> }
>
> if (XMLHttp == null)
> {
> XMLHttp = new XMLHttpRequest()
> }
> if (XMLHttp == null)
> {
> alert("error creating xmlhttp object")
> }
>
> XMLHttp.onreadystatechange=GetFiles
> XMLHttp.open("GET", "LoadImages_GetFiles.ashx", true)
> XMLHttp.send(null)
>
> function GetFiles()
> {
> if (XMLHttp.readyState==4 || XMLHttp.readyState=="complete")
> {
> document.getElementById("gbxLinksDiv").innerHTML =
> XMLHttp.responseText;
> }
> }
>
> Please comment...
> THanks
>
>
> >
>
--
Best regards | Schöne Grüße
Michael
Microsoft MVP - Most Valuable Professional
Microsoft MCAD - Certified Application Developer
http://weblogs.asp.net/mschwarz/
http://www.schwarz-interactive.de/
Skype: callto:schwarz-interactive
MSN IM: [EMAIL PROTECTED]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---