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 126 to 150 of 307
Search took 0.02 seconds.
Search: Posts Made By: Vadivel
Forum: General .NET January 22nd, 2005, 09:50 PM
Replies: 2
Views: 1,010
Posted By Vadivel
While using the session object in ASP.Net you...

While using the session object in ASP.Net you have to check for its existence else it would throw an exception only. i.e., check whether that session is not equal to empty or null before trying to...
Forum: ASP Forms January 22nd, 2005, 09:30 PM
Replies: 1
Views: 675
Posted By Vadivel
Once the user selects the city ... while you are...

Once the user selects the city ... while you are builing the page again you need set that value as selected in the city dropdown box.

Google for "Populating dropdown based on another dropdown" ......
Forum: Classic ASP Databases January 22nd, 2005, 09:13 PM
Replies: 1
Views: 876
Posted By Vadivel
Before executing first print the sql statement...

Before executing first print the sql statement and check for any syntax error there. i.e., copy the displayed sql statement and run it seperately in query analyser.

Best Regards
Vadivel

MVP...
Forum: Javascript How-To January 22nd, 2005, 12:50 PM
Replies: 13
Views: 2,516
Posted By Vadivel
You could also write a recursive function and...

You could also write a recursive function and create popup windows.


function openWin(pgName, numOfTimes)
{
if (numOfTimes == 1)
{
return
}
else
Forum: Javascript How-To January 22nd, 2005, 12:46 PM
Replies: 13
Views: 2,516
Posted By Vadivel
<html> <head> <script language="javascript"> ...

<html>
<head>
<script language="javascript">
function openWin()
{
var pop1,pop2,pop3,pop4,pop5,pop6;
setTimeout("pop1 = window.open('page1.html','pop1')",3000);
setTimeout("pop2 =...
Forum: Beginning VB 6 January 22nd, 2005, 12:18 PM
Replies: 4
Views: 19,439
Posted By Vadivel
Check this ::...

Check this :: http://www.experts-exchange.com/Programming/Programming_Languages/Visual_Basic/Q_20987464.html

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: C# January 22nd, 2005, 12:08 PM
Replies: 1
Views: 1,219
Posted By Vadivel
This might help!...

This might help! http://www.akadia.com/services/dotnet_find_methods.html

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: HTML Code Clinic January 22nd, 2005, 12:05 PM
Replies: 2
Views: 1,057
Posted By Vadivel
In short you can copy and paste content from Word...

In short you can copy and paste content from Word into your form element. Without having a look at the code I don't think I could comment on why it isn't working for u.

Best Regards
Vadivel
...
Forum: VB.NET 2002/2003 Basics January 22nd, 2005, 12:01 PM
Replies: 5
Views: 5,512
Posted By Vadivel
I am @ home at present .. I don't have .NET...

I am @ home at present .. I don't have .NET installed here. The earliest I could send you a sample would be on Monday IST. Sure somebody else would in the meantime help you out with the code snippet....
Forum: ASP.NET 1.1 January 22nd, 2005, 11:57 AM
Replies: 3
Views: 3,466
Posted By Vadivel
Use, Session.Abandon() Session.RemoveAll()...

Use,
Session.Abandon()
Session.RemoveAll() //this would remove all elements from the session hash
and then redirect to the desired page (Response.redirect or Server.Transfer)

Best Regards...
Forum: Classic ASP Basics January 22nd, 2005, 11:47 AM
Replies: 4
Views: 1,463
Posted By Vadivel
Check out this sample code: <html> <head> ...

Check out this sample code:

<html>
<head>
<script type="text/javascript">
function TextBlinker()
{
pymtDue = document.getElementById('tblRow1'); ...
Forum: Classic ASP Databases January 22nd, 2005, 11:30 AM
Replies: 1
Views: 2,198
Posted By Vadivel
Check whether this would help!!...

Check whether this would help!! http://www.kamath.com/tutorials/tut004_autonum.asp

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: General .NET January 21st, 2005, 11:50 PM
Replies: 3
Views: 1,192
Posted By Vadivel
Make use of Server.Execute ... Best Regards ...

Make use of Server.Execute ...

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: VB.NET 2002/2003 Basics January 21st, 2005, 11:37 PM
Replies: 5
Views: 5,512
Posted By Vadivel
Set ReadOnly as true for those columns which you...

Set ReadOnly as true for those columns which you don't want to edit. I guess you might need to check DataGridColumnStyle class.

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: C# January 21st, 2005, 11:19 PM
Replies: 2
Views: 1,772
Posted By Vadivel
Personally I have always felt that "Dummies"...

Personally I have always felt that "Dummies" series would be a good starting point for any techie subject.

If a person is totally new to C# then I would suggest "C# for dummies" ... after that...
Forum: ASP.NET 1.0 and 1.1 Basics January 21st, 2005, 11:11 PM
Replies: 5
Views: 15,240
Posted By Vadivel
if (ds == null) --- ds == dataset object ...

if (ds == null) --- ds == dataset object


Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.0 and 1.1 Basics January 21st, 2005, 10:55 PM
Replies: 3
Views: 2,644
Posted By Vadivel
I am trying to understand: Is server variables...

I am trying to understand: Is server variables really need for this situation. Can't we directly use javascript and move to previous page!

Something like, history.back() or history.go(-1)

Best...
Forum: ASP Forms January 21st, 2005, 10:46 PM
Replies: 6
Views: 3,445
Posted By Vadivel
Is this what you want? <html> <head> ...

Is this what you want?

<html>
<head>
<style type="text/css">
INPUT.Enabled {background-color: #ffffff}
INPUT.Disabled {background-color: #a9a9a9}
</style>

<script...
Forum: Classic ASP Databases January 21st, 2005, 10:26 PM
Replies: 3
Views: 1,234
Posted By Vadivel
The below code displays the time alone. Replace...

The below code displays the time alone. Replace getdate() with your datetime field name.

Select Convert(char(10), getdate(), 114)

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: ASP Forms January 21st, 2005, 05:24 AM
Replies: 6
Views: 3,445
Posted By Vadivel
I was thinking the textbox would be greyed out...

I was thinking the textbox would be greyed out automatically if it is disabled!! Isn't it greying it out when you say element.disabled=true?

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: .NET Framework 2.0 January 21st, 2005, 05:19 AM
Replies: 3
Views: 2,451
Posted By Vadivel
VS.NET 2005 is tied up with .NET Framework 2.0...

VS.NET 2005 is tied up with .NET Framework 2.0 ... so i don't think we can tweak VS.NET 2003 to work with 2.0.

But without using VS.NET 2003 you can work on your older projects with .NET...
Forum: Classic ASP Components January 21st, 2005, 05:00 AM
Replies: 3
Views: 1,145
Posted By Vadivel
Using RegEdit we can only Edit registry keys and...

Using RegEdit we can only Edit registry keys and not register DLL's. You need to use RegSvr32.exe for this.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: VBScript January 21st, 2005, 04:54 AM
Replies: 7
Views: 5,454
Posted By Vadivel
Below code replaces double quotes with single...

Below code replaces double quotes with single quotes:

Dim strMyVariable As String
strMyVariable = "D""souza"
strMyVariable = Replace(strMyVariable, Chr(34), Chr(39))
MsgBox "Output :: " &...
Forum: ASP Forms January 21st, 2005, 02:17 AM
Replies: 1
Views: 884
Posted By Vadivel
Check out:...

Check out: www.cryer.co.uk/brian/mswinswdev/ms_vbnet_vb_not_configured_as_app.htm

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.0 and 1.1 Basics January 21st, 2005, 02:10 AM
Replies: 2
Views: 2,894
Posted By Vadivel
Let me give you the code snippet for transforming...

Let me give you the code snippet for transforming a simple VB.NET code. But I am not sure whether this is what you are looking for. Do write back if you are looking for something else.

Namespace...
Showing results 126 to 150 of 307

 




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