Calendar Popup

I am a student working on a calendar popup, but I want to change it a little bit and don't know how. This is probably a very easy fix, but here's what I want to do. I want to have the calendar popup with an associated textbox, but i also want to display the calendar on my page with the current month and the previous month.

That way, if someone wants a month further back they can use the popup, but if they just need the current or previous month, they can just click on the calendar on the page. Can that be done?

View Replies


ADVERTISEMENT

Popup Help

Most of the popup companies that pay you per hit only count it as one per ip adress.
How can i make a system that checks that it has shown the popup to a person...and then goes to the next one?

View Replies View Related

Value PopUp

Quote: Response.write "<a href=verify.asp?Address=" & Add & "&city=" & City & "&state=" & State & "&zip=" & Zip & " target=_new>VerifyAddress</a>"

If Add is "101 ABC STREET " , in popup , Add passes is only 101 and not complete one.

View Replies View Related

Popup To A New Popup

my present asp page opens a popup to display the complete data, but my requirement is to create a login to show only some data in the same popup. my choice was to redirect from the popup that shows all data to a new popup which shows some data (having the first popup not opening at all, clearly to redirect)

Any help how to redirect from popup to popup..?

View Replies View Related

Popup

how do i implement this.I have an event calendar and events are already added into the database.Let's just say that today that is an event.How do I show a popup aying "today's events blah blah blah".This should be shown whenever someone comes into my website.it somehow acts as a reminder.Any ideas?I havent start doing the codes but just wish to get an idea of what to do.

View Replies View Related

Popup

i am having problem in popups.i have an asp page from where a popup opens on clicking a link. the value of a variable is passed from the main page to the popup thru querystring. there are 3 text boxes on the popup one of which shows the value of the said variable. the user has to enter data in the remaining 2 boxes.

what i want is, if the user enters invalid data in those 2 boxes, there should be an alert. on clicking ok the user should be able to see the popup with the value of the variable from the main asp page in the 1st box and 2 textboxes with null values in which he/she has to enter the data again.at the moment what i am getting is, the popup disappears on clicking the ok of the alert.

View Replies View Related

Popup Box

I have the calendar on my sites startpage. A user can click on a link on the calendar to get a popup box displaying the course details and in the popup is a link to apply for the course.

instead of opening a new window I want the startpage to change to the application form. I have tried all the href tags; _blank, _parent, _main and they dont work.

View Replies View Related

Anyone Using ASP Calendar 2.5?

I've been testing it and configuring it for a few weeks now and finally got
everything working, yet when I upload it to my server, it fails to show any
events...

the DB is accessed just fine and new events can be added and deleted
etc..but nothing shows in the events section.

I was led to believe that this might be caused by a setup (mm/dd instead of
dd/mm..bloody dates again)

anyone using this script and gotten around this problem?

View Replies View Related

ASP Calendar

I've looked several times for a calendar like THIS but haven't been able to find one written in ASP. Anyone know where I could find one?

View Replies View Related

Asp Calendar

I am trying to use asp calendar by opening the asp in a modal window (window.showmodaldialog). Page behaves erratic when try to move between dates and months. When I click a new window opens.
Is there a way to make the control work in modal dialogs?

View Replies View Related

Get Calendar

I try to get a simple calendar composant.

View Replies View Related

ASP Calendar

I have been asked to produce a booking system and i need an asp calendar to produce a frontend so users can select the year and month and have the page produce a calendar for that month with clickable dates to fire off a form to get the details for that date.

View Replies View Related

Calendar In Asp

i need to show the calendar using asp any one know where i can get good and free code for this?

View Replies View Related

ASP Calendar

I'm looking at creating a calendar function for an existing system i have. The system is database driven and has a client overview where monthly sales figures can be entered in for the year. It works fine at the mo but when we get to the end of the year there might be a bit of a problem!

What I'm after is a calendar that will allow users to flick between years so that data can be entered and viewed accordingly by month. All the calendars that I have come accross have been too advanced and show days of the week as well.

View Replies View Related

Web Calendar

I'm trying to find some calendar software to use on my company intranet. Ideally, I would like freeware software that has individual calendars for each employee and a general calendar for company events.

View Replies View Related

Pop-up Calendar

I need a pop-up calendar in ASP that allows a person to select historic dates only. The pop-up should be generated from a button, and the date selected should populate an input field.

View Replies View Related

Web Calendar

I'm trying to develop a web calendar, so I can make a schedule from that calendar. And I'm using Access for database. Could anyone refer me to a source for this ?

View Replies View Related

ASP Calendar

I have a ASP calendar that was purchased about 18 months ago that now needs some updating. The calendar worked great in the beginning but we now need the ability to span an event several days rather than just 1 day at a time. How would I go about doing something like this? Since I didn't write the original code, I'm not sure what you would need to see in order to know what needs to be added.

View Replies View Related

ASP Calendar

I have the following code which will get me 12 tables with the name of each month in but not sure to get the correct number of cells within the tables for the correct number of days Code:

View Replies View Related

Asp Calendar

i would like to make asp calendar (with pop up events when you click on the day) that will run with mySQL database ...

View Replies View Related

Calendar

I can post an event dd/mm/yy and it goes into my Access database like that if I click on a date in the calendar that is equal to or below 12 i have to swap the day and month around in the queystring for it to show. is there something in the calendar code that i can do to make it work.

View Replies View Related

Need Image Popup

<a href="javascript:popImg('images/nba<%=("pImg2")%>');"><img src="images/nba<%=getProducts("pImg")%>" border="0"></center></tr>

pImg is a small version of the image in a database. I want to click it and have it popup a properly sized large image (pImg2). I thought the code above would work.

View Replies View Related

Popup Close

I made a popup for uploading some files.My popup looks like this:

function openpopup(){
var popurl="upload_tst.asp"
winpops=window.open(popurl,"","width=400,height=400,")

<a href="javascript:self.close()">close </a>

}

</script>

My problem is that I cannot close the popup.

View Replies View Related

Generate Popup Box

I have a form which contains drop down box with several available selections. Based on the users selection, I would like to have a popup box appear upon the form submission that gives them some additional information about their dropdown box selection. Is this possible?If so, how do I go about doing something like this?

View Replies View Related

Return A Value From An ASP Popup

I want to create a pop up asp page something like:

popUp('myasp.asp',.......)

and when the user closes the popup can I return a value. So sudo code would be like

myJavaScript
int temp = popUp('myasp.asp;,.............. /* Temp is the value returned by myasp.asp
set some textfield to have value temp.
end

Is this possible?

View Replies View Related

NT Popup Login Box

I have a web page that's calling the server variable LOGON_USER to retrieve
the userid of the person accessing it. The web has anonymous access
disabled, and Integrated Windows Authentication enabled. My userid is a
member of a security group that has access to the page. When I access this
page on my web server, it displays my userid without popping up the NT login
box. However, when I copy it to my production web server, the NT login box
pops up. I am certain my userid has access to the web on the production
server. In addition, if I don't enter anything on the login box and click
OK, it allows me into the page, and displays my userid. So, how do I
prevent the login box from popping up. If I enable Anonymous Access on the
web, LOGON_USER doesn't return anything, probably because the page is being
accessed with the IUSR_machinename account. My goal is to get the userid of
the person accessing the page -- provided they have security access to it --
without making them login.

View Replies View Related

Popup Parent

i have an aspx page. on that page there is a link that open a new popup page. Popup page contain some text fields. user fills that fields and press OK. By clicking OK I append the textbox values in the DataTable, which is already saved in the session
My Problem is that when that popup windows closes by clicking Ok i want to show that new information in datagrid on the parent page(which opened the popup page[window.open]). i have info in the session, but problem is that when i bind datagrid by using the session Datatable on the parent page.

View Replies View Related

Password Popup

In my asp I need to make a popup that is like a windows password change, a space for old password, new and new again.

I don't really know how to make a popup that does anything other than display text. I would also need to know how to retrieve the data off of the popup for the actual change of the password. Code:

View Replies View Related

Popup Windows From Pop Ups

On one of my pages I have a link to a popup. This popup has a link. When the user clicks this link my popup closes and another Popup is displayed. In this second Popup I want to redirect the user to a different page in my application when the popup closes. Is this possible as another popup opened this second popup so I cannot use 'window.opener'.

View Replies View Related

Popup Blocker

I Am Working With A Asp Project Where Maximum Pages Have Popups.But Maximum Users Use Popup Blockers In Their Systems.Best Way To Code .Is There Any Code To Unblock Popups.
Can We Disable Control Key Or Any Possible Way.

View Replies View Related

Get Value From Popup Window

I have a website which has a popup window (this only opens when the user chooses to open it). In the popup window I have a <select> control which lists a selection of "classes". Each class has a description and a class_id (stored in the value attribute of each option). The user will then select a class from the drop-down list.

What I want to do is have a control in the parent browser window which can store the class_id and the description that the user has selected in the popup window.

what control I should use in the parent window and more importantly how I get the value from the popup window (this must be client side code as the user will have entered other values into the form in the parent browser window)?

View Replies View Related

Popup Window

I am facing a problem in asp pages. I am requesting some values from a page and moving to another page from the second page.

i m opening an popup window and for refreshing econd page from that Popup. i m using code.window.opener.location.href='second window name') in doing this I am losing the values of the first form. which i have to insert in the dbase in the Third page

View Replies View Related

Values From A Popup

This is for an Intranet application before I go any further. I have a form which requires calendar dates, cities etc. to be input. This is not a problem, but when a user clicks to input a date etc., the calendar opens in a popup window over the main window. The values are all selected from a recordset based on a SQL DB.

When a user clicks on a date (or other DB drawn value) in a popup window, how can I carry this value over to the main window and insert it in the relevant form field?

View Replies View Related







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