If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > How to make pop up message in ASP

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-26-04, 07:03
graceson graceson is offline
Registered User
 
Join Date: Mar 2004
Location: India
Posts: 56
Smile How to make pop up message in ASP

Dear all,

I had made online calendar on a intranet,now I need your help to create a pop up message according to entry .

I will expalin my need,

We are storing the task of each user. In the target date , user should get rememberence message about their task.Ho it can be possible.

graceson mathew
Reply With Quote
  #2 (permalink)  
Old 08-27-04, 01:53
Seppuku Seppuku is offline
Useless...
 
Join Date: Jul 2003
Location: SoCal
Posts: 721
JavaScript, not ASP.

Code:
<script language="JavaScript">
<!--
window.open("http://www.myurl.com/mypage.asp", "WindowName", "height=400,width=400,toolbar=0,statusbar=0");
//-->
</script>
The last parameter determines window properties. Do a search on the net for "window.open" to find out all the properties that can be set for the new window.
__________________
That which does not kill me postpones the inevitable.
Reply With Quote
  #3 (permalink)  
Old 08-27-04, 03:10
graceson graceson is offline
Registered User
 
Join Date: Mar 2004
Location: India
Posts: 56
Windows pop up message

Dear friend,

Following is code which i am using for the creation of popup message.But it is giving error in the statement starting with 'window.open'
I am not at all aware about the JavaScript and it usage in ASP. But I want to do it.
Hopes you people can help me

Thanks all fro previous help

Thank you
Graceson

code is give below.

<html>
<head>
<title>CEC Intranet - Windows pop up messages </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!--#include file="adovbs.inc"-->
</head>
<body>
<Script language="JavaScript">
<!--
window.open("http://server/add_prg_owner.asp","Checking window",height=400, width=400,toolbar=0,statusbar=0");
//-->
</script>
</body>
</html>
Reply With Quote
  #4 (permalink)  
Old 08-27-04, 10:19
Seppuku Seppuku is offline
Useless...
 
Join Date: Jul 2003
Location: SoCal
Posts: 721
You can't have a space in the Window Name parameter. Change "Checking window" to "Checkingwindow".
__________________
That which does not kill me postpones the inevitable.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On