Attendee Availability Online

how to go about creating my own custom ASP page that can show several different peoples availability from their Outlook/Exchange 2000 calendars?I don't want to have to ask users to setup permissions for their respective calendars, i just want to be able to see if they're busy or not.

View Replies


ADVERTISEMENT

Cookie Availability

If my user turns cookies off, both permanent and temporary cookies can't be used or only permanent cookies can't be saved on the user's machine?

View Replies View Related

ASP And Availability/scalability

We have an "API" that is written in ASP. Basically it is an ASP page that receive an XML Query string post and sends back a response as a "response.write". The ASP page does validation and SQL calls then eventually written to the SQL 2000 DB and send the response. This works perfect. It is similar how Authorize.Net users post transactions.
I am concerned about the availability and scalability of this. Our webserver is dedicated and the SQL DB is on a separate server (dedicated too). What happens when we have 100 concurrent users transmitting this query string to the ASP file? Will it freeze, hang, lose transactions? Is there a better way that does not re-writing in .NET or another language?

View Replies View Related

Availability Chek

i have a task at work that i cant acomplish on my own. I have to create availability calendar of this type
http://www.villarenters.com/advert_price.asp?ref=5731&rag=10821A&rcam=myvillarenters&sag=&sc=

and to make it work with our database. I try looking for the code of this type of calendars but i couldnt find anything .
Please help me or tell me where i can find a script for this type of calendars (it must be a data base driven)

View Replies View Related

Check Availability

how can i create a button/link to check availability of a user ID against a an ID field. Code:

View Replies View Related

Check Availability

I have this textfield named idNum and users are supposed to key in their id numbers into the field eg (S1234567D, F1234567Z). The id numbers either start with a S or F followed by 7 numbers and then end with an alphabet (A-Z). How can i check if the id number the user keyed in is valid? I'm using VBScript to code and the format is something like that:

If Request.Form("idNum") = "" Then
validateForm=False
errorMsg = errorMsg & "Please key in your ID number.<br>"
End If

View Replies View Related

Availability Calendar

Does anyone know where I can download an ASP based availability calendar, or have one that I can buy? I've trawled the web and can find plenty in CGI/Perl running on MYSQL but none in ASP running on MSSQL or Access.

I'm running a small villa rental website and need functionality like total cost of rental based on numer of days, different colours for days booked, two year forward looking, that kind of stuff.

View Replies View Related

Testing For SQL Availability In ASP

In ASP (vbscript) is there a way to check to see if a SQL server is
online before trying to open a connection?

I have a situation where we have a SQL server that may be offline for
a couple minutes and right the ASP page returns:

Microsoft OLE DB Provider for SQL Server error '80004005'

[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or
access denied.

I'd like to be able to first check to make sure the server is
available and if NOT, then skip the database connection on that page
altogether. Or, at least load the page without showing the error. I
have on error resume next but it still displays this error.

View Replies View Related

User Availability Validation

A field such as name was created to perform a search to find a person. However, if that person is not found, the user can click on the add button and it automatically populates that last name field in the add student form.

Is that possible to do the same with the student id number - by putting in the student id number and if not found click on the add button and the student id is populated on the next form? If so, how? Any tutorials would be very helpful?

View Replies View Related

Availability Check Efficiency

I am currently coding an accommodation rentals website and one of the searches required is an availability check.

At the time of booking you search for an accommodation that matches the accommodation type, no. of people and a start and end date from which to book.

I need to return a list of accommodations available using that criteria, I wanted to know if anybody has any ideas how to achieve this and do it efficiently.

at the moment i have a table that lists the accommodations and a bookings table that stores existing bookings.

View Replies View Related

Domain Availability Function

Can anyone offer a good reference for a domain avialaibility checker? I'd like to create a web page to see if domains are available or not.

View Replies View Related

Check Availability Of Data

how to check the availability of data in table. If there is, I want a messagebox to prompt the users.

View Replies View Related

Verify Availability Before Submitting A Form

I would like some help in having the form check to see if the
selected course is available before submitting the info to the database and
instructs them to choose another date if the course is closed. I have a qry
that does a check and brings the information on availability. Any way to run that qry
-check and send back the message or submit the confirmtion?

View Replies View Related

Component Or Code To Ckeck The Availability Of A Domain

Somebody know a component or code to ckeck. The availability of a domain?

View Replies View Related

Who Is Online?

Developing a community website, and want to be able to maintain a database
of members currently online on the site. I can save their ID as they log
onto the site, but dont know how to tell when they leave it??

Any ideas please?

Also, anyone know of an asp Instant Messaging script that can interface with
the on-line database I will be maintaining??

View Replies View Related

Pdf Online

which is the best to generate pdf file and print table data..

View Replies View Related

Who Is Online

i need to view a list of logged in users...
now i got loginlogout thing going on...but if the user will not logout he will be still logged on for the system...
the only rule i want (on this code that i don't know how to wrote) is how to set timeout of 1 hour...that id the user had not moved or did nothing for 1 hour he automaticly will be offline for the system.

View Replies View Related

Best FSO Online

I am lookign for an indepth FSO tutorial not something i can copy and paste but something i can actually learn from. I have found things that do some of the stuff that i need it to do but i know down the line somewhere i will come up with problems if i dont write the code myself.

View Replies View Related

Who's Online

I saw this on a post in this forum:

<%
Public Sub checkClientConnect()
If Not response.IsClientConnected Then
session.abandon
response.Clear
response.End
End If
End Sub
%>

If I put that on a page it doesn't write anything.. so how does this script work? Is it somehow supposed to write how many users are online?

View Replies View Related

Online Questionnaire Using Asp

Want to create a web page that asks users certain questions and then when clicking the submit button the info get sent via email.

Obviously will create a form and then will have text boxes for each question. Correct me if I am wrong but the aspmail object is limited to a few fields.

View Replies View Related

ASP Online CSS Editor

Is anybody aware of an ASP-based online CSS editor? I'd like to be able to manage my site's CSS files online. Ideally, I'd like to be able to change the colors and such online, then have ASP write the changes to the styles.css file. I know I could have dynamic asp tags throughout my site that would pull the styles from a database, but I'd like to just write to the text file. I haven't seen anything in aspin or hotscripts, so I was wondering if anybody has seen something out there.

View Replies View Related

Online Calender

I am having a go at building an online calender and I am using icons to display events on a certain date.
I would like to show 1 icon for events that are in the future (for example blue square) but another icon for events that have passed (example grey square). All I have in the DB is the actual date of the event.

View Replies View Related

Online Store

I am looking for some ASP - SQL server 2000 online store application that i can buy for my company. This store is completely internal for the company and will be on our intranet server and will be utilized by the company employees to buy company merchantdize.

Also at this time there will be no credit card processing as the amount of purchase will be deducted from the payrol. I will be needing the shopping cart and product view. Later if we provide the credit card processing, we have already installed PayFlowPro from verisign and do creadit card procesing on our main site.

Does any one know such application that i can integrate with our style sheets and general layout?

View Replies View Related

Online Guides

I plan to setup a website which will give help guides on DIY.
I want to allow people to submit their own guides while allowing them to have a link to thier own site to help promote thier company.
I want to be able to have a directory of all the guides with a nice simple layout.
Does anybody know of any good free or cheap scripts that will allow this?

View Replies View Related

OnLine Visitors

I wanted to ask for a help for my site. I want to make script that will show the number of visitors, how many visitors are curently on the site.

View Replies View Related

Online Videos

If anyone is familiar with Camtasia, they should know that it can output
files in various formats... SWH, WMV, AVI, Quicktime, etc.

I would like to output the files in SWH format since it includes a Flash
interface with player controls, etc. There are limitations on the size of
the video with this format. I'm not sure what they are right now.

Anyway, I would like to begin publishing the videos to my website that is
written in ASP.

Can anyone give me any points in the best way to handle this or if there are
any online tutorials or third party components for managing online content
in this way.

I realize I could create a table and assign various fields and simply put
the content into the database. This is likely the best approach, but then I
have to deal with an admin page because our end users won't have the ability
to use Enterprise Manager or Query Analyzer to update the table using raw
SQL. Code:

View Replies View Related

Online Dictionary...

I'm planning to construct an experimental mini online dictionary. The core of the dictionary is, of course, the smart 'search' function.

So I'd like to know if it would be better to use asp instead of php for such a search function (and...why!).

View Replies View Related

UPS Online Tools

Has anyone ever set up code samples for using UPS online tools I need it
for international shipping. I've been trying to setup the tools myself. Some
countries work fine, others produce validation errors. Other errors include
no shipping solutions between origin and destination. When I manually check
on the UPS site, they resolve without problems

View Replies View Related

User Online

I have a login script and everything, I just have one problem. The thing is, is that I want to check how many users are online. It is very simple to do that, but is there a way to check when their user-session ends, or something? In the database all it is is a simple yes or no under "online" and if they are logged in it goes to "yes" and if they access a page while logged out, there is no way to check if they are online or not.
How should I go about doing this?

And if you give me a code, can you please tell me how it works so I can easily modify it(It's just that it'd take a lot less time with you explaining it, than me figuring it out All I need is a simple wording

View Replies View Related

Online Questionnaire

I want to build an online questionnaire, and i dont know where to begin. whats the best way to go about this? sessions?process:user fills up questions/survey user can go back to previous pages to recheck answers then when user is done, when he clicks on submit, the answers are emailed to me.do i need a db for this?

View Replies View Related

User Is Online Or Not

i want to check if a user is online or not,i mean the user use http protocol to access my site,if he close his browser ,how can i know it IMMEDIATELY? so the session can be used here? i found some chatroom using this technology, if possible, give me the java answer also?

View Replies View Related

Online Counter

i need to count visitors and on line users, but I’m having some problems with this global.asa counter witch should use correctly those application and session variables and session onStart and onEnd procedures.

Some how it doesn’t work well. Is there any other way to count visitors and users online?

View Replies View Related

Guest - Online

I have a forum and I would like to have a ASP-page where the visitors can see who's online and where they are. ( as http://www.sitepointforums.com/online.php?s= ) It's easy to list up the members. But how should I make the same thing to guestes? But the problem is that I would also have guest in the list. For example:

c4kristoffer - index.asp - 11:35
platinum - forum.asp?id=5 - 11:19
Guest - index.asp - 11:40
Guest - forum.asp?id=9 - 11:25

View Replies View Related







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