473,410 Members | 1,907 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,410 software developers and data experts.

Advice for an Online Calendar

Can someone point me to a resource for information about incorporating a
calendar on a web page so that it's read only. However, offer update
capability to a couple of people (maybe password protected). I know
that this is not the right place to ask but you folks have been so
helpful I thought that I would ask and maybe someone would point me in
the right direction.

My agility instructor (that is Dog Competition Agility) has a calendar
on her website that is supposed to be updateable by her and her
scheduler. However, they are both having trouble (I don't know what the
problem is) and would like to see if there are any other options for
having a single calendar updateable by two people (in two different
states) and readable by many. Thanks.

Regards,
SueB

*** Sent via Developersdex http://www.developersdex.com ***
Nov 13 '05 #1
10 1462
Did you already had taken a look at www.sourceforge.net? Big chance
there exist a projects that fullfill your needs.

Nov 13 '05 #2
Did you already had taken a look at www.sourceforge.net? Big chance
there exist a projects that fullfill your needs.

Nov 13 '05 #3
If one is going to update a calendar, I'm guessing one is inserting,
updating or deleting rows in a datasource. This capability usually
depends on a password. The method for entry of the password is likely
to be an html form, but the use of the password will depend on the
datasource connection technology used.
For instance a DAP provides a sign in procedure. In an inconsequential
family application I have html pages that allow everyone to look, while
a separate DAP (which is also an htm file) allows those with passwords
and MS Office to modify data. This is easy and quick and the main
viewing is not compromised by the short comings of the DAP, not vice
versa. Creating a DAP is usually a task of a few minutes.
Also in this app, I have a special provision that allows anyone using
my computer, (my IP address, actually) to modify data. I am trusting my
Windows security to prevent problems here. In this case I am using the
oldie but goldie ASP/ADO combination.

Nov 13 '05 #4
If one is going to update a calendar, I'm guessing one is inserting,
updating or deleting rows in a datasource. This capability usually
depends on a password. The method for entry of the password is likely
to be an html form, but the use of the password will depend on the
datasource connection technology used.
For instance a DAP provides a sign in procedure. In an inconsequential
family application I have html pages that allow everyone to look, while
a separate DAP (which is also an htm file) allows those with passwords
and MS Office to modify data. This is easy and quick and the main
viewing is not compromised by the short comings of the DAP, not vice
versa. Creating a DAP is usually a task of a few minutes.
Also in this app, I have a special provision that allows anyone using
my computer, (my IP address, actually) to modify data. I am trusting my
Windows security to prevent problems here. In this case I am using the
oldie but goldie ASP/ADO combination.

Nov 13 '05 #5
Krul,

Thanks for the info. I'll go check out that site.

Regards,
SueB

*** Sent via Developersdex http://www.developersdex.com ***
Nov 13 '05 #6
Krul,

Thanks for the info. I'll go check out that site.

Regards,
SueB

*** Sent via Developersdex http://www.developersdex.com ***
Nov 13 '05 #7
lylefair:

Thanks for the information. DAP? Data Access Page? Probably. Is that
the file type? Would this work for a MAC user? My instructor (the one
with the website) used a Mac (probably an iBook) and her scheduler uses
a PC. They used to send a word document back and forth. Not practical.
Thus, the placement of the calendar on the website. Are there any books
to describe what you did with your home setup?

Regards,
SueB

*** Sent via Developersdex http://www.developersdex.com ***
Nov 13 '05 #8
lylefair:

Thanks for the information. DAP? Data Access Page? Probably. Is that
the file type? Would this work for a MAC user? My instructor (the one
with the website) used a Mac (probably an iBook) and her scheduler uses
a PC. They used to send a word document back and forth. Not practical.
Thus, the placement of the calendar on the website. Are there any books
to describe what you did with your home setup?

Regards,
SueB

*** Sent via Developersdex http://www.developersdex.com ***
Nov 13 '05 #9
If by the home setup you mean allowing chnges from my personal computer
I suppose many books treat this in a general way.
The ASP/JScript code is not very complex. I just don't show the inputs
if it's not my computer:

<%
if(Request.ServerVariables('REMOTE_ADDR')=='255.25 5.255.255'){
%>
<tr>
<td style="text-align:right;width:32px">
new
</td>
<td>
<input name="date0" title="YYYY-MM-DD" type="text" />
</td>
<td>
<input name="amount0" type="text" />
</td>
</tr>
<%
}
%>

This is very simple and not designed to foil Houdini the Hacker.
Someone, if they could ascertain the names of the input boxes could
mock up his/her own html window location (just as many of us do to
open our webmail interfaces) and make an entry; but there is nothing to
be gained in doing so (except the human need to destroy) for this
simple app.

Nov 13 '05 #10
If by the home setup you mean allowing chnges from my personal computer
I suppose many books treat this in a general way.
The ASP/JScript code is not very complex. I just don't show the inputs
if it's not my computer:

<%
if(Request.ServerVariables('REMOTE_ADDR')=='255.25 5.255.255'){
%>
<tr>
<td style="text-align:right;width:32px">
new
</td>
<td>
<input name="date0" title="YYYY-MM-DD" type="text" />
</td>
<td>
<input name="amount0" type="text" />
</td>
</tr>
<%
}
%>

This is very simple and not designed to foil Houdini the Hacker.
Someone, if they could ascertain the names of the input boxes could
mock up his/her own html window location (just as many of us do to
open our webmail interfaces) and make an entry; but there is nothing to
be gained in doing so (except the human need to destroy) for this
simple app.

Nov 13 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Susan Bricker | last post by:
Can someone point me to a resource for information about incorporating a calendar on a web page so that it's read only. However, offer update capability to a couple of people (maybe password...
0
by: Ing. Rajesh Kumar | last post by:
Hi everybody I have created a very useful DateTimePicker user control with a calendar and four DropDownLists for Month, Year, Hour and Minute on it. Solution works fine so i was thinking to put it...
4
by: John Dalberg | last post by:
I would like to add a Calendar to my site. Something like airset.com is nice. It also needs to be open source so I can add to it. Any recommendation? John Dalberg
0
by: newsgroups.jd | last post by:
Looking for some options and suggestions on how to proceed - any advice is appreciated and thank you in advance... I have created a master page that has multiple dropdownlists and calendar and...
1
by: VB Programmer | last post by:
Here's the scenario: 3 different pcs in a doctors office. 2 doctors with 2 seperate appointment calendars. All 3 pcs need to be able to see, real time, both doctors calendars and add, remove,...
3
by: thorpk | last post by:
I posted this problem earlier in the month and some one decided it was better to change the subject and ask a completely different question. I am therefore reposting. I am hoping some one can...
0
by: =?Utf-8?B?R2lkaQ==?= | last post by:
Hi, I'm trying to build a Calendar (outlook style) with C#. When I just thought i almost finished, i found out that I've few problems. I want my calndar will have the ability to show few...
4
by: gubbachchi | last post by:
Hi all, Please anybody help me solve this problem. I am stuck up with this from past 2 weeks. I am developing an application where, when the user selects date from javascript datepicker and enters...
9
by: Mo | last post by:
After a little PHP education, my first project (to get my feet wet) is making an employee time-tracking program for our small business. *** ANY SUGGESTION, THOUGHTS, OR ADVICE WOULD BE WARMLY...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.