Live Connection Between Client &

I would like know the active (live) users who have logged in to my site. I should have a live connection with each client so as to enable us to send any messages which should pop up in their system.

View Replies


ADVERTISEMENT

Client Connection Speed

is any idea to find client connection speed like google analytics report on connection?

View Replies View Related

Live Site

I have got a small problem as follows, i am trying to test my web page on the live site of which it doesn't load to the database. hence it loads on the production server.

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

ASP Sessions Not Working Live

I am having trouble with an ASP login that uses sessions to control access
to certain pages. However the sessions are not being carried accross upon
using response.redirect.

I realise that this is the case that DNS names and IP addresses vary upon
whether it works or not, however how can i get around using sessions live on
the internet? and make them work>?

View Replies View Related

My Live Support Script

IT also has almost all of the features I want. It uses a microsoft access 2000 database (I use the following code to connect to the database:

DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("SOMEPLACE")
sqlstmt = "Select * From TABLENAME"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sqlstmt, DSNtemp, 3, 3
Do until rs.EOF or rs.EOF)

The code works fine, I would just like to add a thing and it would tell what page the user(s) are/is at and then I can request a chat with them and a box would pop up asking them if they would like to chat. My oly problem is how would I keep track of the visitors on my site, and how would I know when they left the site?

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

Live Support Script

i'm looking and have been for quite a while now for a good live support script for sales consultants to web surfers.

all i need from the script is the content thats being writen by both parties to show in a log window above and a text field below to enter the text and next to it a .jpeg of the sales consultant there talking too, all with a speedy refresh rate and either automatic notification to the consultant via sound or alert of the surfer browsing the site, or an icon for the user to select for live support.

all needs to be in a pop up box on my site not a seperate chat page or forum. i've seen it on many hosting sites but cant seem to find a cheap or free script to use or alter for myself, any sugestions or scripts would be very much appreciated, and if i can be of any assistance to you i would be glad to assist.

View Replies View Related

Check Locks Live

in ado we have 4 locks

adlockreadonly
adlockpessimistic
adlockoptimistic
adlockbatchoptimistic

how can we check this locks work ...means suppose i used adlockpessimistic ..this lock does not allow other user to alter data ...i wanted to check it live.

View Replies View Related

Difference Between Live User And Crawler

I was just wondering: is it possible to put something in ASP code that would be able to tell the difference when my site gets visited by a live user or a bot?

My website is setup to email me every time there's a visit, but it notifies me when it is visited by web crawlers as well, which I don't care about, I only want to know about real people. How do I teach my script to tell the difference? Any suggestions?

View Replies View Related

Static HTML Pages Live

I have a couple of static HTML pages live, as a sort of family blog. Now I just found out how ASP could work, experimenting with WikiAsp.
What I would like to know is whether it is possible to include some DHTML in my static pages for gathering comments on blog entries, which are saved to a database for example on 1asphost.
Of course it would also be nice to read out the database again to see the comments to each blog entry in the static pages. Can this all be done using ASP?

View Replies View Related

Live Editing Of A Server Document

Someone generates an RTF document, which is stored on the server side. Next
he must be able to edit the document in a WYSIWYG way, and save right back
to the server (without downloading to the user first and uploading again)

What would be the best way to implement this ? Anything goes. ActiveX,
Richtextbox ways, etc...

View Replies View Related

Unable To Connect To Live Communication Server Through My Own UI

I am facing a problem that i am unable to connect to Live Communication Server using my own UI. Actually i want to access the API's in LCS through my own UI(which is a messenger UI),which i am using to implement chatting messenger in my project.

The main reson is that i dont know the code to connect to this LCS and what namespace shld i use so that i can access all the functionality of my LCS 2005.

The coding is to be done in c#. I could have used the MS OFFICE Communicator direcltly but i have to use my oen UI and thus i need to connect to this LCS...

View Replies View Related

Web Conferencing/ Live Streaming Audio-video SDK Required

I am looking for live streaming audio/video technology to integrate in my ASP .NET web application. My searches led to a couple of open source products but most of them were old or came under the form of a full blown web application - not an SDK.

The project is academic and is ample therefore building my own is not feasible at this time. The end product will have to provide the functionality of a commercial product but will only be used as a proof of concept so no commercial use is intended.

Ideally all I am looking for is a library that can establish live-audio video connection between two computers over the internet and allows the video be embedded within a web page (with no or a minimum set of other controls). Also there has to be possible to transmit high quality video.

View Replies View Related

Connection Timeout For Adodb.connection

1.
conn.ConnectionTimeout = 60
conn.Open connString

2.
conn.Open connString
conn.ConnectionTimeout = 60

Do both of them give different?

View Replies View Related

DSN Connection Or Direct Connection

I wanted to know wheather DSN is ok for the connection to a database or direct conection is better?

when i started my web project on dreamweaver i had to make a DSN connection as i have followed the books, but as now as i have also asked several questions on this site, i have aslo implemented a direct connection as well on some pages, now i am wondering
is this going to have any affects when i uplode the complete site on the server.

i have noticed that on my computer when i am testing the site and uploading new records on sections that have DSN connections you can see the new record but on sections that i have implemented direct connection i cannot see it coz it is linked to the local directory database not on the testing server.

i have also never experienced uploading to a IIS server with DB connection so its my first time with dynamic websites. so am i in trouble or its ok the way i have done my site..

View Replies View Related

Client IP

I try to use script to get client IP

<%
dim IPAddr
IPAddr = Request.ServerVariables("remote_addr")
Response.Write("Your IP Address is " & IPAddr)
%>

but script return IP of Web site, not CLIENT and not null value!
My site is hosted on W2003 server SP1, IIS, ISA
I'm only using ASP no ASP.NET

View Replies View Related

Client Via Asp

I've been lurking and searching for a while and hope someday to contribute to the forums.
My question though it may seem strange is this.
Is it possible to run a compiled VB app on the client machine that is called from an asp app running on an intranet server?
Intranet server pushes asp to client's web browser.
Client clicks on a link that somehow runs the process on the client machine.
I realize this is not what asp is meant to do but I do have some applications that could be integrated into the company intranet fairly easily if this is possible. A re-write in asp would be labor intensive. It is simple enough for me to setup standard folders on the clients that require these apps

View Replies View Related

What URL Did Client Come From

I have 2 URL's like this:

xy.abc.com
yz.abc.com

They bolth point to an IP where page1.asp is the default. Hosted on a IIS 6
server.

What code do I use inside page1.asp to determine which of the 2 sites above
the user used to access page1.asp.

View Replies View Related

Learning Client Ip

how can i learn client ip who connect my site..

request.ServerVariables("REMOTE_ADDR") with this i learn my server ip..

View Replies View Related

Client Scripting

The following HTML exists on a page in Internet Explorer v6:

<BODY>
<FORM action="x" method="post" name="Form1">
<INPUT type="hidden" name="key" />
<INPUT type="submit" value="Go" />
</FORM>
</BODY>

What would be the correct VBScript or JavaScript syntax to:
A. Set the value of the key field to "ABC"
B. Submit the form to the server

View Replies View Related

Downloading To Client From ASP

I am developing an app that has a reporting function
which displays the non-PDF reports. One of the users
wishes to have the reports saved to his machine as PDFs.

The app can convert the reports, and save to the server
with no problem (uses a component for this). The problem
is, figuring out how to save the reports to the client.

The ideal approach would be to have the app save the
reports to his desktop, like some of those stupid casino
sites save their shortcut links.

However, I would settle for just just being able to force
the "download" dialog to display, instead of opening
Acrobat when the app attempts to send the report to the
client.

View Replies View Related

How To Get Client Email?

im setting up a database email for my job and i still need a little help. Thx for those who helped me out for past touble...

Well, im now at the step of email deletion from the list and im using a simple script for that (cuz im new to programming).

After the customer received the email, i want him to be able to unsubscribe to my newsletter with a click on a link which lead to a delemail.asp page where the script is. Code:

View Replies View Related

How Can Get Client Ip Address

how can i find the ip address of a client?

View Replies View Related

Streaming XLS To The Client

I have a page which allows the user to open one of several spreadsheets by
streaming the XLS to the client.

On my development site, everything appears to work fine. On the live site,
it works fine for the vast majority of users, but not for my colleague & I.

When this page is called with the correct inputs, the standard
Open/Save/Cancel/More Info dialog should appear. In the dialog, it gives the
following details:

Filename: Gothenburg Sweden.xls
File type: Microsoft Excel Spreadsheet
From: Servername

Clicking on open, means that the file will be opened in the local copy of
Excel; this works for most people, except one colleague and myself. In our
case, after clicking on Open, we get the following error msg:

"Internet Explorer cannot open travel.asp?journey=1 from <servername>
Internet Explorer was not able to open this internet site. The requested
site is either unavailable or cannot be found. Please try again later."

Anybody got any ideas about this? Code:

View Replies View Related

Client Entries

I want to validate client entries into textbox,checkbox
controls etc. can u do this with asp. Like, is there
onchange and onclick and so on for these controls?

View Replies View Related

Client Intranet

I'm currently working on an Intranet for one of our clients. I'm developing a user directory for them using a SQL Server database.
My client has provided me with the information to connect to the server remotely via windows remote desktop connection. I would like to know how I go about getting Dreamweaver to connect to the database?
Will I have to create a database locally and then publish the local database onto their server or, can I create the database on their server and using DW to connect to it?

View Replies View Related

Client Side

This has happened before and it was due the connection string not being set
in VB. My question is, when I try to reconnect can I use a different
connection string on the client than I have on the server, I wonder because
not all my connection strings are not equal.

Some of my database paths are in Access and the rest are in SQL. That means I have to retry several times before a scrip timeout occurs. If you have read this far then you are an idiot, but the rest of the database seems to work just fine. In fact I can
pull all fields out with no problem. It is just that connection string that
has resulted in causing my pages not to post.

View Replies View Related

How To Use ActiveX For Client PC Using ASP

I have created one ActiveX DLL in VB that has one public function
("GetClientCPUID") which will return a string of the CPUID. I want to use
this to get the clients CPUID and retuern to webserver. I am new to using
activeX in client side.

In Asp how can I send this ActiveX to client browser? (I will instruct my
users to allow this activeX). Is there a way I will execute this activeX in
clients PC and get the return value and return to the server for my
processing? Please suggest the ways that I can do this.

Also suggest what are the situations that I should know before I proceed. I
think there will might a issue when I upgrade the activeX and the client
those are using the current one may face problem so I think I will need a
way to uninstall the register the new one. Code:

View Replies View Related

Client IP Address

how to get client IP address in asp i know there a variable that can get user IP address but which i forgot already, anyone here can tell me

View Replies View Related

Add Client Side

I want to add clinet side javascript on the asp:dropdownlist's onchecked changed event how i do this does any one have any idea.i use the following method in vb.net code behind file

dropdownlist1.Attribuets.add("onCheckedChanged","javascript:aa()")

and see that when i change the option in the list the javascript method aa not fired.

View Replies View Related

Server And Client

I have my asp pages stored in my server ,but when i try and call the asp pages in the clinet side it does not show a portion of the page,the same thing if i call from the server it shows me.

View Replies View Related

Streaming An XLS To The Client

I have a page which allows the user to open one of several spreadsheets by streaming the XLS to the client.

View Replies View Related







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