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 376 to 400 of 463
Search took 0.04 seconds.
Search: Posts Made By: madhukp
Forum: Classic ASP Basics July 8th, 2004, 12:52 AM
Replies: 6
Views: 1,633
Posted By madhukp
Hello Vijay, I am planning to do it as a com...

Hello Vijay,

I am planning to do it as a com component so I can use it in many project including VB projects. It will take some time.

Sure. I will let you know once it is ready.
Forum: Classic ASP Basics July 7th, 2004, 11:37 PM
Replies: 7
Views: 2,204
Posted By madhukp
Helo Vijay, Yes. This method is much more...

Helo Vijay,

Yes. This method is much more efficient that mine. This helps me also as I am doing a similar work now.
Forum: Classic ASP Basics July 7th, 2004, 08:43 AM
Replies: 2
Views: 671
Posted By madhukp
You need to have a table tblEvents with atleast...

You need to have a table tblEvents with atleast following fields.

EventName

EventDescription

EventDate

Then in the onChange event of the month dropdown, you can submit the selected month...
Forum: Classic ASP Basics July 7th, 2004, 05:23 AM
Replies: 5
Views: 3,166
Posted By madhukp
Well, I would like to know whether the following...

Well, I would like to know whether the following things.

1) Are you getting this error

The Remote Procedure Call Failed and Did Not Execute

at any time ?

2) Are you using IIS 4.0 ?
Forum: Classic ASP Basics July 7th, 2004, 02:33 AM
Replies: 5
Views: 3,166
Posted By madhukp
Normally such errors happen when either 1)...

Normally such errors happen when either

1) number of concurrent connections

or

2) bandwidth

is limited by IIS.
Forum: Classic ASP Basics July 7th, 2004, 02:04 AM
Replies: 7
Views: 2,204
Posted By madhukp
The easiest method is to 1) convert the word...

The easiest method is to

1) convert the word template to html tremplate.

2) insert template variables into html file. You may define tags for this. For e.g. [currentdate] may be one variable....
Forum: Classic ASP Basics July 7th, 2004, 01:14 AM
Replies: 6
Views: 1,633
Posted By madhukp
hi Vijay, Thanks for your solution. I...

hi Vijay,

Thanks for your solution.

I have decided to do it as below.

There will be 3 folders. live, test and dev.

I will create a script to compare the last modification time of all...
Forum: Classic ASP Basics July 6th, 2004, 05:09 AM
Replies: 6
Views: 1,633
Posted By madhukp
Hi Pat, This is a brilliant solution. It...

Hi Pat,

This is a brilliant solution. It saves me uploading the pages again. It relieves the client from paying additionally for the staging site. Thanks a lot.

But anyway, the db changes needs...
Forum: Classic ASP Basics July 6th, 2004, 03:01 AM
Replies: 6
Views: 1,633
Posted By madhukp
DNS propagation time

The issue I have now does not have anything to do with ASP. But I am not able to find an appropriate forum to discuss it. So I am putting it in my default forum.

Recently, I have completed a...
Forum: Classic ASP Basics July 3rd, 2004, 12:34 AM
Replies: 1
Views: 3,425
Posted By madhukp
You can check it like this dim...

You can check it like this

dim bRadioButtonSelected

if(Request.Form("rbWalking")="") then
bRadioButtonSelected=false
else
bRadioButtonSelected=true
end if
Forum: Classic ASP Basics July 3rd, 2004, 12:20 AM
Replies: 2
Views: 964
Posted By madhukp
SQLMail is the solution for you. You need to...

SQLMail is the solution for you.

You need to have Microsoft exchange installed on server. It must have users also defined in it. Then SQL mail can be configured through enterprise manager of SQL...
Forum: Classic ASP Basics July 2nd, 2004, 08:09 AM
Replies: 10
Views: 6,182
Posted By madhukp
Dear Imar, Thanks for your suggestion. ...

Dear Imar,

Thanks for your suggestion.

Currently, this method is just doing the thing which can be done by ADO command object. But I am going to expand it to include

1) The code to generate...
Forum: Classic ASP Basics July 2nd, 2004, 07:04 AM
Replies: 10
Views: 6,182
Posted By madhukp
Hello Imar, Thanks for your helps in...

Hello Imar,

Thanks for your helps in achieving my COM object.

One more doubt.

I have a method by name ExecuteManipulationQuery which requires a query to be passed to it. However, I am doing...
Forum: Classic ASP Basics July 2nd, 2004, 12:14 AM
Replies: 13
Views: 2,376
Posted By madhukp
Friends, I have tested it from an internet...

Friends,

I have tested it from an internet booth (which uses IE 5.5 and IE 5.0). I am able to replicate the problem there also. So sessions can be blocked.

To those who have tested,

You need...
Forum: Classic ASP Basics July 2nd, 2004, 12:01 AM
Replies: 2
Views: 3,242
Posted By madhukp
Hi John, You can change the logic slightly. ...

Hi John,

You can change the logic slightly.

Dim sb as New StringBuilder()

Dim Item as ListItem

Dim strList as String ' newly defined variable to store intermediate lists
strList=""
Forum: Classic ASP Basics July 1st, 2004, 05:07 AM
Replies: 13
Views: 2,376
Posted By madhukp
Hello Vijay, You may be checking from PWS or...

Hello Vijay,

You may be checking from PWS or a local server.

Here are my scripts.

login.asp

<%@Language="VBScript"%>
<%
Forum: Classic ASP Basics July 1st, 2004, 01:34 AM
Replies: 13
Views: 2,376
Posted By madhukp
hello Vijay, In IE 6.0 please do the steps. ...

hello Vijay,

In IE 6.0 please do the steps.

1) Go tools->Internet options
2) Open privacy tab
3) Click advanced
4) Check "Override automatic cookie handling"
5) Block first party cookies...
Forum: Classic ASP Basics July 1st, 2004, 12:56 AM
Replies: 20
Views: 2,555
Posted By madhukp
Hi Vijay, But when I do the above steps, my...

Hi Vijay,

But when I do the above steps, my session controlled sites stop work in my browser.

This was indicated to me by one of our client and most of the corporate companies do this in all...
Forum: Classic ASP Basics July 1st, 2004, 12:31 AM
Replies: 13
Views: 2,376
Posted By madhukp
Logged - in status without using session

I have done many administration sites which require login to enter. I am storing the logged-in status in session. But since usage of session is bad and sessions can be blocked in some browsers, I am...
Forum: Classic ASP Basics July 1st, 2004, 12:21 AM
Replies: 20
Views: 2,555
Posted By madhukp
Dear Vijay, The method to block session in...

Dear Vijay,

The method to block session in IE6.0 is

Go tools>Internet options>Privacy(tab)

Advanced - > block cookies and uncheck "Always allow per session cookies"

But for some reason,...
Forum: Classic ASP Basics June 30th, 2004, 09:19 AM
Replies: 20
Views: 2,555
Posted By madhukp
And if your problem is to connect to 3 databases...

And if your problem is to connect to 3 databases which are in 3 different locations, the obvious solution is to have 3 connection object. One each to connect to one database.

You may not need 3...
Forum: Classic ASP Basics June 30th, 2004, 09:13 AM
Replies: 20
Views: 2,555
Posted By madhukp
I think it is difficult to update remote database...

I think it is difficult to update remote database through a VB application on your machine without blocking the site for some time.(unless you have some synchronization tools that work over web). The...
Forum: Classic ASP Basics June 30th, 2004, 06:56 AM
Replies: 13
Views: 1,546
Posted By madhukp
The data won't get posted to the third page...

The data won't get posted to the third page automatically.

You can store the form fields and values in hidden fields in a form in page2.asp and submit the form to page3.asp.

If you need to pass...
Forum: Classic ASP Basics June 30th, 2004, 01:29 AM
Replies: 13
Views: 1,546
Posted By madhukp
Here is another solution. You can include two...

Here is another solution. You can include two submit buttons on the same form. Like this.

<form name="frm_test" action="testfb.asp" method="post">

<input type="submit" name="btn_edit"...
Forum: Classic ASP Basics June 30th, 2004, 12:17 AM
Replies: 13
Views: 1,546
Posted By madhukp
Unfortunately, you cannot put one form inside...

Unfortunately, you cannot put one form inside another form.

But you can put the inner form outside. If the second form requires some fields from first form also, you can adopt any of the following...
Showing results 376 to 400 of 463

 




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