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 101 to 125 of 307
Search took 0.03 seconds.
Search: Posts Made By: Vadivel
Forum: HTML Code Clinic January 25th, 2005, 01:20 AM
Replies: 3
Views: 1,478
Posted By Vadivel
one major drawback of this method is search...

one major drawback of this method is search engine optimization won't happen properly.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: HTML Code Clinic January 25th, 2005, 01:17 AM
Replies: 3
Views: 1,478
Posted By Vadivel
One common method is to make use of framesets. ...

One common method is to make use of framesets.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Javascript January 25th, 2005, 12:16 AM
Replies: 7
Views: 1,829
Posted By Vadivel
I am glad that my code helped :) Best...

I am glad that my code helped :)

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: SQL Server 2000 January 25th, 2005, 12:10 AM
Replies: 1
Views: 1,583
Posted By Vadivel
1. Edit two records in Authors table in PUBS...

1. Edit two records in Authors table in PUBS database. For one record changed the au_fname as 'Anne'. For the next record change the au_fname as 'anne'.
2. Execute the below query to see it doing a...
Forum: ASP.NET 1.1 January 25th, 2005, 12:01 AM
Replies: 4
Views: 1,673
Posted By Vadivel
If you are going to use only history.back() or...

If you are going to use only history.back() or history.go(-1) then you could create a Html button instead of a server control. On the onClick of it call this js code.

Best Regards
Vadivel

MVP...
Forum: Classic ASP Databases January 24th, 2005, 11:48 PM
Replies: 4
Views: 984
Posted By Vadivel
Assign the value of formatdatetime(now(),...

Assign the value of formatdatetime(now(), vbshortdate) to a variable .. lets say "TimeValue". Then make use of the following "if" loop to identify whether it is a AM or PM.

Dim strTemp

if...
Forum: Javascript January 24th, 2005, 02:32 PM
Replies: 7
Views: 1,829
Posted By Vadivel
It does validate the length as well! To check...

It does validate the length as well!
To check that .. change the variable myString to some string ...say "abc123111". You could see I have validated the length by saying {1,7} in the regular...
Forum: Classic ASP Databases January 24th, 2005, 02:21 PM
Replies: 4
Views: 984
Posted By Vadivel
or try this ... formatdatetime(now(),vbshortdate)...

or try this ... formatdatetime(now(),vbshortdate)

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Databases January 24th, 2005, 02:20 PM
Replies: 4
Views: 984
Posted By Vadivel
I guess you need to make use of...

I guess you need to make use of FormatDateTime(Date,4) or something similar

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: SQL Server 2000 January 24th, 2005, 02:13 PM
Replies: 3
Views: 2,331
Posted By Vadivel
Check out my article on detaching/attaching a...

Check out my article on detaching/attaching a database :: http://www.sswug.org/see/17226

If at all you don't have access to that article, google for sp_attach_db and sp_detach_db.

For your...
Forum: Classic ASP Professional January 24th, 2005, 02:02 PM
Replies: 1
Views: 1,112
Posted By Vadivel
I guess you are bothered about safe guarding your...

I guess you are bothered about safe guarding your script files!! Check out,
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/SeconScriptEncoderOverview.asp

That...
Forum: Classic ASP Databases January 24th, 2005, 01:46 PM
Replies: 2
Views: 6,997
Posted By Vadivel
http://vyaskn.tripod.com/case_sensitive_search_in_...

http://vyaskn.tripod.com/case_sensitive_search_in_sql_server.htm

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.1 January 24th, 2005, 01:27 AM
Replies: 4
Views: 1,451
Posted By Vadivel
1. Are you using Win 2003 as your OS? 2....

1. Are you using Win 2003 as your OS?
2. #include would work in ASP.NET as well. But it has been provided mainly for backward compatibility.
3. Why not make use User controls?

Best Regards...
Forum: VB.NET 2002/2003 Basics January 24th, 2005, 01:22 AM
Replies: 4
Views: 1,337
Posted By Vadivel
check, www.vb-helper.com/howto_net_datagrid.html ...

check, www.vb-helper.com/howto_net_datagrid.html
btw you can google to get working samples for it

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: HTML Code Clinic January 24th, 2005, 01:12 AM
Replies: 2
Views: 3,241
Posted By Vadivel
I guess you need to explain more ... Not clear on...

I guess you need to explain more ... Not clear on what you are trying to achieve!

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Javascript January 24th, 2005, 01:09 AM
Replies: 7
Views: 1,829
Posted By Vadivel
How about this? <html> <head> <script...

How about this?

<html>
<head>
<script language="javascript">
var myString = "abc1231" //document.logInForm.pWord.value;
var re = /^[\w]{1,7}$/
if (!re.test(myString))
{
alert("Your...
Forum: Javascript How-To January 24th, 2005, 12:55 AM
Replies: 6
Views: 16,681
Posted By Vadivel
This would work for IE alone: <html> <head> ...

This would work for IE alone:
<html>
<head>
<script language="vbscript" >
Function test
Dim t
Set t = CreateObject("WScript.Shell")
t.Run "notepad.exe",1,True
set t = nothing
End Function
Forum: Javascript How-To January 24th, 2005, 12:39 AM
Replies: 5
Views: 11,990
Posted By Vadivel
Change the javascript function as follows: ...

Change the javascript function as follows:

function ReCalc()
{
var f = document.orderform;
f.intsub1.value = Number(parseInt(f.intqty1.value) * 3.99).toFixed(2);
f.intsub2.value =...
Forum: Beginning VB 6 January 24th, 2005, 12:17 AM
Replies: 3
Views: 5,135
Posted By Vadivel
This might help! ::...

This might help! :: http://www.codepedia.com/2/FAQ-WinForm-Splash-Screen

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Beginning VB 6 January 24th, 2005, 12:11 AM
Replies: 4
Views: 19,439
Posted By Vadivel
Extract from that site: In VB6 goto Project...

Extract from that site:

In VB6 goto Project menu - Project Properties - and on the "Make" Tab and specify the command line parameter.

You can get whatever has been passed to your app by using...
Forum: Classic ASP Basics January 24th, 2005, 12:06 AM
Replies: 4
Views: 1,345
Posted By Vadivel
This is a Classic ASP forum. Repost your query in...

This is a Classic ASP forum. Repost your query in appropriate forum to get some response.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Javascript How-To January 23rd, 2005, 06:38 AM
Replies: 1
Views: 1,541
Posted By Vadivel
Check ::...

Check :: http://www.jguru.com/faq/view.jsp?EID=1157429

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Databases January 23rd, 2005, 05:51 AM
Replies: 17
Views: 11,589
Posted By Vadivel
Chk out::...

Chk out:: http://dotnetjunkies.com/WebLog/petergekko/archive/2004/02/25/7897.aspx

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Access January 22nd, 2005, 10:18 PM
Replies: 1
Views: 935
Posted By Vadivel
Try replacing Chr(13) as <BR> i.e., ...

Try replacing Chr(13) as <BR>
i.e.,
<%=Replace(StringComesHere, Chr(13), "<br>")%>

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Javascript How-To January 22nd, 2005, 10:04 PM
Replies: 13
Views: 2,516
Posted By Vadivel
Sure could be done. Hmm there are different ways...

Sure could be done. Hmm there are different ways to solve a problem let him choose the way which he likes :)

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Showing results 101 to 125 of 307

 




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