Showing posts with label chat. Show all posts
Showing posts with label chat. Show all posts

Saturday, March 24, 2012

Live chat with ajax and atlas

Live chat built by ASP.NET 2 technology with AJAX and ATLAS support, which mean 100% web browser base. Does this mean it is faster, safer and more flexible?

Based on my experience in developing chat application using ASP and AJAX. You bet it would be more presentable with AJAX, especially if you are aiming to build database chat. As you would be avioding many page refreshes at run time. Page post is the most common (or should I say annoying) issue which you would be coming across in your ASP chat project.

However as we all know that AJAX is still in its beta, so there are some flexibility issues, which I am sure would be taken care of in the final release of AJAX. And I am sure everyone is waiting for it :)

Cheers
Ritesh


Hi Ritesh, i'm trying join all the information related with live chats / web messengers / instant messengers that uses the AJAX / ATLAS technology in an unique post.

So all the users that is encountering dificults to start with applications of this type, just like me, can help each other publishing informantions about this issues.

If you want join us, the post is:http://forums.asp.net/thread/1580610.aspx

But there's another post so much interisting when the friendjodywbcb put the a link from a ASP chat project very interisting developed using ATLAS.

I recommend you visit too, the link is:http://forums.asp.net/thread/1580610.aspx

So join us.. .let's start a project or just share great informations...

See ya there

Kalel

Load a new page into a modal popup.

Hi. I need to implement a chat in a website for technical suport online. But I'd like to do that in a modalPopup, i need start to load a page into a modal with some parameters is it possible in a modal, or maybe i need to work with a normal popup or a prototype windows framework?

Have a look at this Javascript tutorial for opening a modal windowhttp://javascript.about.com/library/blmodal.htm


Sure, you can use the modal popup. All the modal popup does is show/hide a DIV, so the container can contain just about anything you want...

Seehttp://www.asp.net/ajax/ajaxcontroltoolkit/samples/ModalPopup/ModalPopup.aspx for a demo.

-Damien


Hi,

You can use normal popup or AJAX modal popup with a frame in it.

To use AJAX modal popup with a frame in it,please check out the following link for more information:http://forums.asp.net/p/1160057/1919992.aspx#1919992

Best Regards

Wednesday, March 21, 2012

Loading the Ajax Toolkit Page with IFrame into Php-website: Access denied

How to load the Ajax Toolkit Page (my Chat) with IFrame into Php-website?

Code for an illustration:

1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">2<html xmlns="http://www.w3.org/1999/xhtml" >3<head>4<title>Untitled Page</title>5</head>6<body>7<iframe id="iframe1" width="100%" height="1000" frameborder="0" src="http://ajax.asp.net/ajaxtoolkit/Accordion/Accordion.aspx" marginwidth="0" marginheight="0" scrolling="no" />8</body>9</html>10

There is nothing elase that you have to do.

Since PHP is in-line with HTML, just close your PHP and specify the HTML iframe tage.

As long as the iframe page is a complete AJAX Toolkit page that works stand-alone, you should be fine.