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 151 to 175 of 307
Search took 0.03 seconds.
Search: Posts Made By: Vadivel
Forum: ASP.NET 1.0 and 1.1 Basics January 21st, 2005, 01:56 AM
Replies: 4
Views: 1,258
Posted By Vadivel
You might want to look into the following...

You might want to look into the following methods.

1. WriteXml
2. ReadXml
3. ReadXmlSchema
4. WriteXmlSchema

Best Regards
Vadivel
Forum: ASP.NET 1.1 January 21st, 2005, 01:23 AM
Replies: 2
Views: 761
Posted By Vadivel
COM -- component Object model is Microsoft's...

COM -- component Object model is Microsoft's component software architecture developed for Windows. Its the base for OLE and ActiveX and provides a means to reuse code without requiring...
Forum: ASP.NET 1.1 January 21st, 2005, 01:03 AM
Replies: 1
Views: 747
Posted By Vadivel
PDB: Debugging symbols are the data that let...

PDB:

Debugging symbols are the data that let the debugger show you source and line information, variable names, and data type information for your program. All that information is stored in a .PDB...
Forum: Classic ASP Basics January 21st, 2005, 12:35 AM
Replies: 2
Views: 1,146
Posted By Vadivel
This is a classic ASP forum. Repost the question...

This is a classic ASP forum. Repost the question in appropriate .NET forum to get any response.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Basics January 21st, 2005, 12:33 AM
Replies: 3
Views: 913
Posted By Vadivel
First you need to check whether cookies are...

First you need to check whether cookies are supported in end users system. Then check whether the cookies already exists in user system. If the user is visiting for the first time it won't be ...so...
Forum: ASP Pro Code Clinic January 21st, 2005, 12:23 AM
Replies: 2
Views: 785
Posted By Vadivel
If at all you are looking for a basic sample .....

If at all you are looking for a basic sample .. check out the attached code snippet:

<html>
<head>
<script type="text/javascript">
function ToggleDiv(id) {
// All the DIVs are hided here...
Forum: ASP Forms January 20th, 2005, 11:59 PM
Replies: 4
Views: 8,976
Posted By Vadivel
Normally we would use history.forward() or...

Normally we would use history.forward() or location.replace(). Still what ever method we use there isn't any clear way by which we can disable the back button.

Let us assume that we are using...
Forum: ASP Forms January 20th, 2005, 12:30 AM
Replies: 1
Views: 4,970
Posted By Vadivel
string strFileName = "Test.pdf"; ReportDocument...

string strFileName = "Test.pdf";
ReportDocument rptDoc = new ReportDocument();
rptDoc.Load(Server.MapPath(@"CRPDF.rpt"));
DataSet TestDataSetPDF = GetDataSet(userName());...
Forum: Classic ASP Databases January 20th, 2005, 12:17 AM
Replies: 1
Views: 793
Posted By Vadivel
Make use of...

Make use of Request.ServerVariables("HTTP_REFERER") to capture the source from which the user is landing into your page. You can then dump that into the DB with some custom logic.

Best Regards...
Forum: Classic ASP Databases January 18th, 2005, 12:53 AM
Replies: 1
Views: 2,494
Posted By Vadivel
You have posted in a wrong forum. Repost it in...

You have posted in a wrong forum. Repost it in .NET forums.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Databases January 18th, 2005, 12:52 AM
Replies: 9
Views: 4,330
Posted By Vadivel
Check out Microsoft's Web Font Wizard (popularly...

Check out Microsoft's Web Font Wizard (popularly known as WEFT) and Bitstream.com. Almost some 4 years back I have used these tools for creating multilingual sites.

Best Regards
Vadivel

MVP...
Forum: Classic ASP Components January 18th, 2005, 12:43 AM
Replies: 1
Views: 1,348
Posted By Vadivel
ASPExec --- its a product of ServerObjects. Check...

ASPExec --- its a product of ServerObjects. Check out www.serverobjects.com/products.htm

WScript -- http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsobjwscript.asp...
Forum: ASP CDO January 18th, 2005, 12:29 AM
Replies: 1
Views: 1,132
Posted By Vadivel
What exactly you want to do with template column...

What exactly you want to do with template column and datagrid. Be more specific!

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP Forms January 13th, 2005, 05:00 AM
Replies: 1
Views: 1,633
Posted By Vadivel
Just print the query and see. That is see whether...

Just print the query and see. That is see whether "eid" has some value while building this query. ["Select * From Equipment Where EquipmentCode = "&eid]


Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: SQL Language January 11th, 2005, 04:46 AM
Replies: 2
Views: 1,176
Posted By Vadivel
Though I am not clear with your requirement .. I...

Though I am not clear with your requirement .. I guess Triggers can be of use to you.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP Forms January 11th, 2005, 12:43 AM
Replies: 4
Views: 989
Posted By Vadivel
1. You might need to format the content so that...

1. You might need to format the content so that it displays in a lesser font size
2. Remove unwanted columns from the table
3. Try printing the content using Landscape mode.

Best Regards...
Forum: Classic ASP Databases January 11th, 2005, 12:09 AM
Replies: 2
Views: 1,581
Posted By Vadivel
Whats this all about??? Best Regards ...

Whats this all about???

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP E-commerce January 10th, 2005, 01:32 AM
Replies: 3
Views: 1,513
Posted By Vadivel
1. Use this line to check End of File / Begining...

1. Use this line to check End of File / Begining of File :: If RSet.EOF And RSet.BOF Then

2. OR Check this link :: http://www.webthang.co.uk/tuts/tuts_asp/gk_errors/gk_errors.asp#5

Best...
Forum: ASP E-commerce January 10th, 2005, 01:17 AM
Replies: 2
Views: 1,322
Posted By Vadivel
Yeah as christian said you can get the source...

Yeah as christian said you can get the source code for the discussion forum from the net and customize it according to your need. One such site where you could download the source code is ::...
Forum: ASP E-commerce January 10th, 2005, 01:09 AM
Replies: 2
Views: 1,050
Posted By Vadivel
Entering the credit card number in the text box...

Entering the credit card number in the text box and doing a form POST (not GET) - is OK in case of SSL. The POSTed data gets encrypted, so it is safe.

Displaying it on the HTML page directly is...
Forum: Classic ASP Databases January 7th, 2005, 11:16 PM
Replies: 3
Views: 972
Posted By Vadivel
It would be better if you could post the code ......

It would be better if you could post the code ... so that somebody could check and revert.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: HTML Code Clinic January 7th, 2005, 11:03 PM
Replies: 11
Views: 19,212
Posted By Vadivel
Avoid cross posting :(...

Avoid cross posting :( http://p2p.wrox.com/topic.asp?TOPIC_ID=24545

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.1 January 7th, 2005, 10:34 PM
Replies: 16
Views: 8,018
Posted By Vadivel
IMO session variables can be used "easily" as...

IMO session variables can be used "easily" as long as your application is not going to on a web farm. If at all it is in a web farm we need to do some extra code in configs. So in those cases I...
Forum: Classic ASP Basics January 7th, 2005, 10:21 PM
Replies: 3
Views: 2,374
Posted By Vadivel
If you are looking for application level global...

If you are looking for application level global variable then .. make use of Application Variable:

Application("ConnectionString") = connectionString

This value would be accessible from all the...
Forum: SQL Server 2000 January 7th, 2005, 06:24 AM
Replies: 7
Views: 1,311
Posted By Vadivel
To my knowledge it can't be done in SQL Server...

To my knowledge it can't be done in SQL Server 2000. Anyway just try copying the mdf/ldf files and attach it in the destination.

Best Regards
Vadivel

MVP ASP/ASP.NET...
Showing results 151 to 175 of 307

 




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