Wrox Programmer Forums
|
Welcome to the p2p.wrox.com Forums.

You are currently viewing the section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Showing results 76 to 100 of 307
Search took 0.03 seconds.
Search: Posts Made By: Vadivel
Forum: Classic ASP Basics February 3rd, 2005, 12:49 AM
Replies: 5
IIS
Views: 947
Posted By Vadivel
To IISReset itself we can parameters and Stop or...

To IISReset itself we can parameters and Stop or Start it.

iisreset /stop --- this stops IIS
iisreset /start -- this starts the IIS

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: ASP Pro Code Clinic February 3rd, 2005, 12:27 AM
Replies: 11
Views: 2,343
Posted By Vadivel
The below code redirects the user to a different...

The below code redirects the user to a different page after 3 seconds


<%
InitialTime = Timer()
CurrentTime = Timer()
ElapsedTime = CurrentTime - InitialTime

do while ElapsedTime < 3...
Forum: HTML Code Clinic February 2nd, 2005, 06:13 AM
Replies: 4
Views: 2,019
Posted By Vadivel
You could do it with onmouseover and onmouseout...

You could do it with onmouseover and onmouseout events. The below code does that ... see whether this helps you:

<html>
<body>
<img src="arrowPrev.gif" Name="imgChange" width="200"/> <br><br>...
Forum: ASP CDO February 2nd, 2005, 05:58 AM
Replies: 1
Views: 688
Posted By Vadivel
1. Check for EOF 2....

1. Check for EOF

2. http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q175/2/39.asp&NoWebContent=1


Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: HTML Code Clinic February 2nd, 2005, 01:54 AM
Replies: 14
Views: 2,466
Posted By Vadivel
Not sure on what kind of info you are looking at...

Not sure on what kind of info you are looking at creating Word file from ASP ... so i have attached a basic code snippet for the same.

Set WA = CreateObject("Word.Application")
Set WD =...
Forum: HTML Code Clinic February 2nd, 2005, 01:41 AM
Replies: 14
Views: 2,466
Posted By Vadivel
Yes you could create superscript contents by...

Yes you could create superscript contents by using <sup> tag.

<html>
<body>
Superscript :: 7<sup>th</sup> <br><br>
Subscript :: H<sub>2</sub>O
</body>
</html>

Best Regards
Forum: Javascript How-To February 2nd, 2005, 01:32 AM
Replies: 3
Views: 2,687
Posted By Vadivel
1.For your first query ::...

1.For your first query :: http://www.codetoad.com/forum/17_10053.asp
2. For your second query :: http://www.flws.com.au/showusyourcode/codeLib/code/js_DateDiff.asp?catID=2 or...
Forum: Javascript How-To February 2nd, 2005, 01:18 AM
Replies: 5
Views: 4,326
Posted By Vadivel
Yes they are right. But if you still want to go...

Yes they are right. But if you still want to go with Javascript way .. check this article ... http://tech.irt.org/articles/js202/index.htm

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: Javascript How-To February 2nd, 2005, 12:58 AM
Replies: 4
Views: 12,717
Posted By Vadivel
yep it works ... just tried out a sample and here...

yep it works ... just tried out a sample and here is the code ...

<html>
<head>
<script language="javascript">
function countTableRows()
{
var rows=document.getElementById("tbl").rows.length;...
Forum: Javascript How-To February 2nd, 2005, 12:35 AM
Replies: 5
Views: 11,990
Posted By Vadivel
Cool .. glad to know that my code was of help to...

Cool .. glad to know that my code was of help to you :)

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Components February 2nd, 2005, 12:14 AM
Replies: 3
Views: 1,669
Posted By Vadivel
"ExpiresAbsolute" allows us to set a specific...

"ExpiresAbsolute" allows us to set a specific date/time when the page needs to be removed from cache ...

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP CDO February 2nd, 2005, 12:09 AM
Replies: 3
Views: 5,910
Posted By Vadivel
Extract from that article which might interest...

Extract from that article which might interest you:




Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP CDO February 2nd, 2005, 12:03 AM
Replies: 3
Views: 5,910
Posted By Vadivel
oops I didn't realise this to be the Classic ASP...

oops I didn't realise this to be the Classic ASP forum ... the link which i have posted above is for ASP.NET

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP CDO February 2nd, 2005, 12:01 AM
Replies: 3
Views: 5,910
Posted By Vadivel
I have written an article regarding this in MSDN...

I have written an article regarding this in MSDN .. check it out @ http://www.microsoft.com/india/msdn/articles/161.aspx

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP CDO February 1st, 2005, 11:56 PM
Replies: 4
Views: 2,279
Posted By Vadivel
Check out Microsoft support article regarding...

Check out Microsoft support article regarding this @ http://support.microsoft.com/kb/q164485/

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP CDO February 1st, 2005, 11:54 PM
Replies: 5
Views: 1,620
Posted By Vadivel
Check this thread ::...

Check this thread :: http://www.sitepoint.com/forums/archive/index.php/t-22702.html

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.1 January 26th, 2005, 02:19 PM
Replies: 3
Views: 899
Posted By Vadivel
I guess you would have missed out "If Not...

I guess you would have missed out "If Not IsPostBack" logic in your Page_Load event. ie., write your query and populate the dataset or whatever within "If Not IsPostBack"

Best Regards
Vadivel
...
Forum: SQL Server 2000 January 26th, 2005, 01:44 PM
Replies: 2
Views: 640
Posted By Vadivel
oops you have mentioned MySQL !! as this is a SQL...

oops you have mentioned MySQL !! as this is a SQL Server group I presumed your post is for sql server :)

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: SQL Server 2000 January 26th, 2005, 01:42 PM
Replies: 2
Views: 640
Posted By Vadivel
select * from authors where au_lname like '%#%'...

select * from authors where au_lname like '%#%' worked for me in SQL Server 2000

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: General .NET January 26th, 2005, 01:17 PM
Replies: 11
Views: 11,142
Posted By Vadivel
Check this out ::...

Check this out :: http://www.c-sharpcorner.com/Code/2003/Sept/EnterNullValuesForDateTime.asp

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Javascript January 26th, 2005, 01:12 PM
Replies: 2
Views: 4,502
Posted By Vadivel
The CodePage property specifies the character set...

The CodePage property specifies the character set that will be used when displaying dynamic content.
(1252 :: American English and most European languages)

Check this out ::...
Forum: General .NET January 25th, 2005, 02:42 PM
Replies: 11
Views: 11,142
Posted By Vadivel
Normally we would try to use DBNull.Value .....

Normally we would try to use DBNull.Value .. instead try SqlDateTime.Null .. it would work.

1. Make use of namespace :: System.Data.SqlTypes
2. SqlDateTime strSql; //Declare a variable
3....
Forum: Javascript How-To January 25th, 2005, 02:31 PM
Replies: 5
Views: 11,990
Posted By Vadivel
For rounding off numbers make use of Math.round...

For rounding off numbers make use of Math.round and Math.pow .. .check the below sample:

<html>
<head>
<script language="javascript">
function fnRound()
{
var formField =...
Forum: ASP Forms January 25th, 2005, 02:20 PM
Replies: 8
Views: 2,869
Posted By Vadivel
Is it throwing any error? Best Regards ...

Is it throwing any error?

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Basics January 25th, 2005, 01:23 AM
Replies: 8
Views: 3,397
Posted By Vadivel
You might want to check this ::...

You might want to check this :: www.asp101.com/articles/john/schedule/default.asp

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Showing results 76 to 100 of 307

 




Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.