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 176 to 200 of 463
Search took 0.04 seconds.
Search: Posts Made By: madhukp
Forum: SQL Server ASP November 10th, 2004, 01:25 AM
Replies: 11
Views: 5,219
Posted By madhukp
Generally such an error happens when the data you...

Generally such an error happens when the data you are trying to insert is larger than what the destination field can contain. For example, the value passed may be a long integer when the destination...
Forum: VB How-To November 9th, 2004, 05:38 AM
Replies: 2
Views: 950
Posted By madhukp
I could not understand your problem fully. What...

I could not understand your problem fully. What do you mean by "sub-item" ? May I know what is the object frmPricingsubform![Description] ? Is it a text box ? Are there a number of text boxes of this...
Forum: VB How-To November 9th, 2004, 03:05 AM
Replies: 2
Views: 1,382
Posted By madhukp
Dear Ramkumar, The following may not be a...

Dear Ramkumar,

The following may not be a solution to your problem. But When I had a similar situation, I did it in this way.

I created a public subroutine in a module (subFillGrid). To this...
Forum: Classic ASP Basics November 8th, 2004, 06:04 AM
Replies: 3
Views: 1,490
Posted By madhukp
May I know what error you are getting ? This will...

May I know what error you are getting ? This will help solve the problem fast.

It is difficult to go through each of the lines and locate error (if any).
Forum: Classic ASP Basics November 6th, 2004, 05:29 AM
Replies: 3
Views: 2,569
Posted By madhukp
Hello kevokiran, Do you have access to the...

Hello kevokiran,

Do you have access to the server ? If yes, you can do the following.

Create a custom error page for the site. You can copy the basic template of the site and include error...
Forum: VB How-To November 4th, 2004, 08:24 AM
Replies: 5
Views: 3,411
Posted By madhukp
Could you please post your code piece ?

Could you please post your code piece ?
Forum: VB How-To November 4th, 2004, 07:24 AM
Replies: 5
Views: 3,411
Posted By madhukp
I assume you are using VB 6.0. You need to...

I assume you are using VB 6.0. You need to programme the keydown event of the control.

The code is :

If KeyCode=vbKeyTab then
Msgbox "Tab key pressed"
' do necessary actions
KeyCode=0 'This...
Forum: Classic ASP Basics November 2nd, 2004, 12:21 AM
Replies: 7
Views: 935
Posted By madhukp
I made the mistake. It is the VB script which is...

I made the mistake. It is the VB script which is a scripting language. ASP provides an environment for VBScript to run. In addition to VBScript, you can use other scripting languages like JScript...
Forum: Classic ASP Basics November 1st, 2004, 02:34 AM
Replies: 5
Views: 34,633
Posted By madhukp
Dear Matt, Thanks for this regular...

Dear Matt,

Thanks for this regular expression. This works correctly.

But this approves a domain like http://www.madhu.coo also. Actually there is no extension like coo. This is why I want to...
Forum: Classic ASP Basics November 1st, 2004, 01:18 AM
Replies: 5
Views: 34,633
Posted By madhukp
List of valid domain extensions

This is not related to ASP. (But I am not finding any forum to discuss this). Sorry.

May I know where I can get an exhaustive list of valid domain extensions (.com, .net, .gov.in etc. etc.) ?...
Forum: Classic ASP Professional November 1st, 2004, 12:30 AM
Replies: 11
Views: 1,767
Posted By madhukp
Unfortunately MySQL 4.x does not support stored...

Unfortunately MySQL 4.x does not support stored procedures.
Forum: VB How-To October 30th, 2004, 03:31 AM
Replies: 4
Views: 2,093
Posted By madhukp
Thanks for all the responses. Sorry for the...

Thanks for all the responses. Sorry for the delay. I was doing various types of feasibility checks in this direction.

I got a code to read the hard disk serial number using VB. The link is :
...
Forum: Classic ASP Basics October 30th, 2004, 03:07 AM
Replies: 6
Views: 2,390
Posted By madhukp
Numan's idea is correct. You can use the same...

Numan's idea is correct. You can use the same name for the checkboxes. But give different values for each checkbox. The ID of the record is the best choice for values.

In that case, you will get...
Forum: Classic ASP Basics October 29th, 2004, 11:58 PM
Replies: 6
Views: 2,390
Posted By madhukp
You cannot do edit and delete actions in a single...

You cannot do edit and delete actions in a single submit, I think. They can select some records and submit them for edit or delete but not both.

If that is the case, you can two buttons with same...
Forum: Classic ASP Basics October 29th, 2004, 11:41 PM
Replies: 15
Views: 25,722
Posted By madhukp
Dear Matt, Submitting values in this way is...

Dear Matt,

Submitting values in this way is needed in accessing some web services. For e.g. the SMS service offered by www.sms-wap.com. Here we need to pass some values to a remote web page. We...
Forum: Classic ASP Basics October 29th, 2004, 08:17 AM
Replies: 7
Views: 935
Posted By madhukp
ASP is a scripting language. A scripting...

ASP is a scripting language.

A scripting language is different from a High level language in following ways.

1) scripting language is interpreted. HLLs(VB, Delphi, Pascal) are compiled. This...
Forum: Classic ASP Basics October 29th, 2004, 06:40 AM
Replies: 15
Views: 25,722
Posted By madhukp
Dear Anubhav, This is a server side XML. So,...

Dear Anubhav,

This is a server side XML. So, I think, there is no browser compatibility problem. Am I incorrect ?

This may not work when the correct XML parser library is not installed. This...
Forum: Classic ASP Basics October 29th, 2004, 12:02 AM
Replies: 15
Views: 25,722
Posted By madhukp
You can do this by using XMLHTTP object. ...

You can do this by using XMLHTTP object.

Here is a sample code. You can get a number of them from MSDN.

Dim obj_post
Set obj_post=Server.CreateObject("Msxml2.SERVERXMLHTTP")
Dim str_data...
Forum: Classic ASP Basics October 27th, 2004, 06:29 AM
Replies: 1
Views: 743
Posted By madhukp
Hi Nihar, I don't think there are any direct...

Hi Nihar,

I don't think there are any direct methods.

But the following indirect method will work. Please not that this is only a sample code and you need to develop it to suit your particular...
Forum: Classic ASP Basics October 22nd, 2004, 04:55 AM
Replies: 25
Views: 14,227
Posted By madhukp
Dear Matt, My strategies above were built...

Dear Matt,

My strategies above were built not from any theoritical background. But purely on a test and see basis.

I was using mm/dd/yyyy format in a site which ran correctly for one and a half...
Forum: Classic ASP Basics October 21st, 2004, 11:41 PM
Replies: 25
Views: 14,227
Posted By madhukp
Thanks Vijay. Regarding the fourth step I...

Thanks Vijay.

Regarding the fourth step I mentioned, I don't know the internals of it. But if I set it like this and then pass date values in mm/dd/yyyy format, I found that it will not cause any...
Forum: Classic ASP Basics October 21st, 2004, 09:54 AM
Replies: 25
Views: 14,227
Posted By madhukp
One more doubt. What about the seperator between...

One more doubt. What about the seperator between date, month and year parts ? Which is the "universal one" ? - or /
Forum: Classic ASP Basics October 21st, 2004, 09:51 AM
Replies: 25
Views: 14,227
Posted By madhukp
Thanks Vijay for the information that it is...

Thanks Vijay for the information that it is stored actually in yyyy/mm/dd format. Actually, I thought it is in mm/dd/yyyy format.

This also helps me in generalising some standards. It is in this...
Forum: Classic ASP Basics October 21st, 2004, 07:22 AM
Replies: 2
Views: 694
Posted By madhukp
Dear Dave, This has been discussed many a...

Dear Dave,

This has been discussed many a times. Please have a look at some of these issues.

http://p2p.wrox.com/topic.asp?TOPIC_ID=19083
http://p2p.wrox.com/topic.asp?TOPIC_ID=18956...
Forum: Classic ASP Professional October 21st, 2004, 05:30 AM
Replies: 14
Views: 8,606
Posted By madhukp
You may put 01-2004 for Jan 2004 02-2004...

You may put

01-2004 for Jan 2004
02-2004 for feb 2004
03-2004 for mar 2004
.....
.....
01-2005 for Jan 2005

etc. etc.
Showing results 176 to 200 of 463

 




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