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 463
Search took 0.04 seconds.
Search: Posts Made By: madhukp
Forum: Linux January 5th, 2005, 07:04 AM
Replies: 6
Views: 1,637
Posted By madhukp
Thanks for all the replies (Sorry, I was away for...

Thanks for all the replies (Sorry, I was away for sometime).

I also found a series of pages at

http://www-106.ibm.com/developerworks/linux/library/l-roadmap.html

which I found very useful....
Forum: Classic ASP Basics January 5th, 2005, 03:31 AM
Replies: 1
Views: 1,785
Posted By madhukp
When you are writing VBS, you do not need to...

When you are writing VBS, you do not need to access server object. This is an object accessible only to ASP pages.

You can just use

CreateObject("ADODB.Connection")
Forum: VB How-To January 1st, 2005, 04:11 AM
Replies: 4
Views: 8,507
Posted By madhukp
You cannot takeout the close button. But, I...

You cannot takeout the close button. But, I think, you may prevent closing the window by programming the onUnload event. You can set

Cancel = true

This will nullify the close action.

Please...
Forum: Classic ASP Basics December 31st, 2004, 01:18 AM
Replies: 1
Views: 1,596
Posted By madhukp
You can use frame.print command of JavaScript. ...

You can use frame.print command of JavaScript.

Let fraReport be the name of the form where your report appears. You can put the following script in the onClick event of print button
...
Forum: SQL Server 2000 December 30th, 2004, 06:51 AM
Replies: 4
Views: 1,187
Posted By madhukp
You can generate SQL of your entire database...

You can generate SQL of your entire database through Enterprise Manager.

1) Open Enterprise Mgr.

2) Locate database

3) Right click. Open All Tasks -> generate SQL script

4) In the window,...
Forum: PHP How-To December 29th, 2004, 02:23 AM
Replies: 3
Views: 1,579
Posted By madhukp
You can use Javascript to achive this. You...

You can use Javascript to achive this.

You can put a hidden field in a form. Let txtView be the name of it.

document.form(0).txtView.value=document.all.iView.document.body.innerHTML;
...
Forum: PHP How-To December 28th, 2004, 12:36 AM
Replies: 3
Views: 1,579
Posted By madhukp
You want to get the HTML from the iframe. isn't...

You want to get the HTML from the iframe. isn't it ? You can use the following statement.

id_editor_frame.document.body.innerHTML

where id_editor_frame is the ID of the iframe.
Forum: PHP How-To December 27th, 2004, 05:37 AM
Replies: 6
Views: 3,385
Posted By madhukp
Yes, that magic_quotes_gpc and...

Yes, that magic_quotes_gpc and magic_quotes_runtime are playing something here. I am currently doing a thorough research. I hope to publish a function soon.
Forum: Linux December 22nd, 2004, 02:47 AM
Replies: 6
Views: 1,637
Posted By madhukp
The linux philosophy - starter problems

I was a hard-core windows supporter and have fairly good knowledge about windows development environment and functionalities. But now, I have become dubious about the future of windows and want to...
Forum: Classic ASP Basics December 21st, 2004, 06:25 AM
Replies: 5
Views: 8,949
Posted By madhukp
Let the name of the textbox be txtTest. Let...

Let the name of the textbox be txtTest. Let strText be the variable into which you want to store the modified value. The following piece of script can do it.

Dim strTest...
Forum: Classic ASP Basics December 17th, 2004, 10:48 AM
Replies: 5
Views: 771
Posted By madhukp
I had an experience that the performance of...

I had an experience that the performance of filesystemobject is very bad on files larger than 60 KB. (that which cannot be opened with notepad). Later I used Index Server to solve it.
Forum: Classic ASP Basics December 17th, 2004, 07:01 AM
Replies: 2
Views: 862
Posted By madhukp
I have not used it. But you can try browser...

I have not used it. But you can try browser capabilities component to determine the type of browser and operating system.

Here there is a platform attribute to determine the platform of browser....
Forum: PHP Databases December 16th, 2004, 09:17 AM
Replies: 1
Views: 1,203
Posted By madhukp
MySQL table types

Could somebody please tell about the various types of DB tables of MySQL like

MyISAM
ISAM
Heap
Berkely DB
Merge etc. What is the significance of this ? Which one of this will be fastest in...
Forum: Classic ASP Basics December 15th, 2004, 07:57 AM
Replies: 3
Views: 1,197
Posted By madhukp
Sorry to disappoint you. It is not possible to...

Sorry to disappoint you. It is not possible to access client machine using a server side scripting language alone.

One possibility is to write the text to a HTML file at server side and then give...
Forum: Classic ASP Professional December 11th, 2004, 07:49 AM
Replies: 1
Views: 8,142
Posted By madhukp
If you are in a position to install a component...

If you are in a position to install a component on server, then here is a solution. This is a free FTP component you can use in ASP.

http://www.chilkatsoft.com/ChilkatFtp.asp

detailed...
Forum: PHP How-To December 10th, 2004, 08:52 AM
Replies: 6
Views: 3,385
Posted By madhukp
Sorry for not presenting the problem correctly....

Sorry for not presenting the problem correctly. My aim is not to remove single quotes from inputs. But retain them as single quote itself in database. If I am using addslashes function, the single...
Forum: PHP How-To December 10th, 2004, 05:47 AM
Replies: 6
Views: 3,385
Posted By madhukp
add slashes and strip slashes

I have noticed a strange thing in PHP hosted under windows 2003.

I use addslashes function to remove any single quotes before inserting input data to db. Then I need to use stripslashes function...
Forum: Classic ASP Basics December 10th, 2004, 02:33 AM
Replies: 5
Views: 771
Posted By madhukp
I think you can use Index server for this...

I think you can use Index server for this purpose. The following link gives an article which will give you the introductory knowledge on index server.

http://askasp.com/articles.asp?ArtID=6
Forum: Classic ASP Basics December 10th, 2004, 02:02 AM
Replies: 3
Views: 930
Posted By madhukp
You need only allow "per-session cookies". ie. in...

You need only allow "per-session cookies". ie. in the privacy tab -> advanced settings, you can block both first party cookies and third party cookies and check "always allow session cookies" (I am...
Forum: Classic ASP Basics December 9th, 2004, 12:32 AM
Replies: 3
Views: 794
Posted By madhukp
I think the names of frame3 and frame 4 are same....

I think the names of frame3 and frame 4 are same. Please use different names for frames.

Then you can use target attribute of anchor tag /form tag to achieve this. Are you using this now ?
Forum: PHP How-To December 8th, 2004, 05:19 AM
Replies: 4
Views: 1,061
Posted By madhukp
Your aim is to match a string that starts with...

Your aim is to match a string that starts with P2P and contains only numerals after that. Is n't it ?

If yes, the RE you have to use is ^P2P[0-9]*$

(P2P).[0-9]* will match 09P2P0.9 and P2P0.5...
Forum: Classic ASP Professional December 7th, 2004, 09:35 AM
Replies: 4
Views: 1,041
Posted By madhukp
I suppose this is an application working in an...

I suppose this is an application working in an intranet.

Is your login details (to the NT machine) different from that of other persons ? Is there any additional security checkings for you ?
...
Forum: PHP How-To December 7th, 2004, 09:21 AM
Replies: 4
Views: 1,061
Posted By madhukp
Hello Anshul, You can use this regular...

Hello Anshul,

You can use this regular expression.

^P2P[0-9]*$

Hope that helps.
Forum: PHP How-To December 2nd, 2004, 10:18 AM
Replies: 2
Views: 1,826
Posted By madhukp
Thanks Daniel. This is exactly what I was looking...

Thanks Daniel. This is exactly what I was looking for.
Forum: Classic ASP Basics December 2nd, 2004, 12:51 AM
Replies: 4
Views: 2,182
Posted By madhukp
What Matthew gave will work correctly. ...

What Matthew gave will work correctly.

Please do not send personal mails about the issues that are being discussed here.

Hope you won't get offended.

Cheers

Madhu
Showing results 126 to 150 of 463

 




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