ADVERTISEMENT

ASP & Chat

For a college site, we have Win 2000 and IIS5 running with ASP support with MSSQL backend.

We have to implement a chat system where a student can chat with a professor.

Any suggestions on how we go about this? Since the server setup is in our hands, I have very little restrictions on how I go about this.

View Replies View Related

Asp Chat

does anyone know any free asp chat software ,where 2 or 3 people from a company can login and answer questions from different customers.

View Replies View Related

Chat

I guess everyone heard about Livsrv but they are chargeable. We are looking for same kind of thing but free One.

View Replies View Related

Chat Script

im trying to find a free chat script but with adminestration rules
also i found some chat rooms i must pay 4 it every year or 6 month like digichat
and could n't find some explain 4 that.so can any body tell me about a good free chat and why must i pay 4 digichat every year ?

View Replies View Related

Chat Program In ASP

I would like a free Live Support script for my site...writtent in ASP. I found some, but they refresh the page to update the contents...I would like it to use a better, more-efficient way. Some features that would be nice, but not needed would be visitor monitoring and operator initiated chats, and the ability to push the user to pages. If there is any such script...could someone please tell me where I can find it?

View Replies View Related

Chat Component

Please recommend an chat component ( customer support purpose)
for .net applications with oracle back end.
Loof forward for any information in this regard.

View Replies View Related

ASP-Flash Chat

i am looking for asp-flash based chat source codes please send me link if you find any one. Code:

View Replies View Related

Chat Room ?

I need help for making a chat room.

From past six month i am trying to make a chat room .

so far i have tried text chat, session / application chat, database chat, xml chat e.t.c

but all these chat are not fast ..
The message sending and receiving time is around 4 sec. and some time it is more than 7 sec.

I want to make a chat room in asp which will be very fast , can any one guide me ...

i am planning for socket chat in asp but still not able to find any thing in that.

View Replies View Related

Chat Application

I have made a chat application and used Application("") global objects to send the messages Now, I want to add the private messaging feature to it Let us say there are 10 users at one time so that one user can click on 9 users and private chat with them.

How can I maintain or separate this private messaging?

View Replies View Related

Live Chat

Can anyone point me in the right direction for a script that allows user to chat on the web in ASP. However I need a one to one chat room.

I came accross this site and source code ...

View Replies View Related

Chat Server

I plan to develop a dll which will be registered on a server and accessed by asp. The dll is a chatserver control (using winsock). the client end will be in vb. what are the guidelines to follow?

View Replies View Related

ASP/ASP.Net Chat Software

I am looking for a customizable chat software that is not in Java. It needs to be in ASp or ASP.net. It also needs to be able to intergrate with a SQL 2000 DB. I need this for a very big project I am involved in if any one can help i would truley apprecaite it.

View Replies View Related

Chat Window To Client After Few Second

I had problem, one of our client web site with 650 pages and nearly 4500 visitior per day from our country. He need chat program that when visitor watches his pages for more than 25 second then he must called to Service Chat.

That owner must view� IP address [country and city]

� Time's counting of each visitor
� then call the visitor for Service chat.

Problem in here is:

How to send popup window to client browser for Particular IP address only and not for all after few minutes. Is it possiable or not.

View Replies View Related

Online Chat Application

i need code for online chat application development for an matrimonial chat application development.

View Replies View Related

Live Chat With Customers

I am looking for free live chat support system in asp for download not for rent. Do you know any available on the internet ?

View Replies View Related

Design A Chat Room

I would like to create a chat room but I don't know where to start. for example:
Should I create a database for the user input and output. I never done this before.

View Replies View Related

Looking For Socket Chat In Asp And Javascript

I am looking for a script or help in asp and javascript socket chat program.

View Replies View Related

Build Chat System

i want to build simple chat system for fun. but i dont know where should i start. i know asp and little JS , AJAX .

i think these are enough for that kind of target. actually most important question is where should i store messages? and how can i send incoming messages to users "AT THE SAME MOMENT" . i mean how can i make continuous connection or is it possible?

View Replies View Related

Chat Room Using Mysql Database

I am working on developing a chat room using mysql database. the chat room has two frames one for the display text and the second frame for submit text from the user.

the two frames are:
display.asp
send.asp

what I need help with is when the user send a message how can I update the data with the new entry. Code:

View Replies View Related

Easy To Setup Web Chat For Windows?

i'm looking for a easy to setup web chat script that i can install on IIS? if someone can point me in the right direction it woudl be great, i download a couple cgi scripts but couldn't get them to load.

View Replies View Related

Internet Chat And Instant Messaging

help with designing a chat system for my website? I have been looking for good tutorials in the net but so far, I have not found any.

View Replies View Related

FTP Put Via ASP Using Visual Basic

I've read hundreds of posts regarding this, but haven't got a working solution yet. Does anyone have a working snippet of code from an ASP page that can be used to upload a file to an FTP server? I read all about INET, but due to some licensing issues it won't work....

View Replies View Related

ASP.net And IIS Basic Question

ASP.net is that what is used to create web pages on a server such as IIS?
ASP.net is part of visual studio, what software package contains IIS?

View Replies View Related

Basic Authentication

I have an XML file which I access from a remote server like

Set http = CreateObject("MSXML2.ServerXMLHTTP")
http.open "GET","http://www.andrewlouis.co.uk/viewcountries.xml",false
http.send
strXML = http.responseText

The real server is password protected with, I think, with basic
authentication. How do I pass it the username and password.

View Replies View Related

Basic ASP Problem

This is ALL the code that i have..

<%
response.write("This is a test")
%>

the file is saved as test.asp

I have uploaded it, and when i run it, I get the code being displayed ie.
<%
response.write("This is a test")
%>

View Replies View Related

Basic Search

I am having one asp page in which a table is displayed. The table displays the values in textboxes.when the client uses search functionality it searches in the whole page but doesnt search in the table. Can any one tell me about how to search the values contained in textboxes in the table.if possible give me some code

View Replies View Related

Basic Update

However I have a complicated update page so I am going to hand code it. I started by breaking down to the basics of Updating but I keep getting a 'Syntax error in UPDATE statement' error. Can anybody see where I am going wrong?:

<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../Connections/Publishing.asp" -->
<% If Request("Submit") <> "" Then %>
<%

set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_Publishing_STRING
Command1.CommandText = "UPDATE Test SET Value = Paul WHERE ID = 2 "
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()

%>
<% End If %>

View Replies View Related

Visual Basic

Is there one? I need to hash a sensative string before inserting it into the sql server database. It HAS to be done in the ASP code, because it is also stored in a cookie. Any ideas? Server asp code is vbscript.

View Replies View Related

MSN API In Visual Basic...

I need source code for a simple MSN API example, something that interacts between MSN's controls. I want to break it down test it and use it for my own applications.

Or can people even suggest free source code sites for VB. I can search for them there. Planet-source-code had an AMAZING app, but it wanted an ocx file which I obviously didn't have.

View Replies View Related

Basic Question

I have two simple problems which I think are related(?) I have a form with the folowing code:

<form method="post" action="sendemail.asp">
and
<input name="submit" type="button" value="SUBMIT">


when I click the submit button it does not go to sendemail,asp I have tried adding the full/parstial path infront of the sendemail.asp but no luck

Similarly I have the following code which I have taken an asp file from another project and changed the name accordingly but the image does not show Code:

View Replies View Related

Basic Authentication

I'm using MSXML2.ServerXMLHTTP to get a web page using an url with basic authentication (e.g. http://user:password@www.mysite.it).

Microsoft denied basic authentication within Internet Explorer URL (see KB 834489) so I'm unable to get the page contents.The client-side workaround is to change some registry settings (see http://support.microsoft.com/kb/834489), anybody can help me with a different solution ?

View Replies View Related

Another Basic SQL Statement

I've got a field in my database called notes, where they of course are leaving notes for certain orders. I'd like to create a page that lists all orders that have notes left in them but I'm having trouble figuring out what sql statement to use. In my words it needs to say "select everything from the table where notes does not equal null"

I guess I just don't really know what to put for the null part. I'm thinking it'll be somehting like..

SELECT * FROM requests WHERE notes <> ...??? this is what I dont know.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved