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 251 to 275 of 307
Search took 0.03 seconds.
Search: Posts Made By: Vadivel
Forum: Classic ASP Basics December 31st, 2004, 12:35 AM
Replies: 2
Views: 748
Posted By Vadivel
ASP and ASP.NET can co-exist ... only thing is...

ASP and ASP.NET can co-exist ... only thing is session sharing between ASP and ASP.NET needs to be taken care of!

http://www.consonica.com/information/movingtoaspdotnet/movingtoaspdotnet.html --...
Forum: Classic ASP Databases December 31st, 2004, 12:25 AM
Replies: 6
Views: 2,067
Posted By Vadivel
Yeah that would be better. With knowing what...

Yeah that would be better. With knowing what exactly is the problem you are trying to address it would be hard to go through and understand the logic ourself!

Best Regards
Vadivel

MVP...
Forum: SQL Server 2000 December 30th, 2004, 01:58 AM
Replies: 1
Views: 943
Posted By Vadivel
Long back I have tested a product called...

Long back I have tested a product called LogExplorer. It was useful in analysing the transactions as well as recovering data. Just check whether that would suit your need.

I am not aware of any...
Forum: SQL Language December 30th, 2004, 01:41 AM
Replies: 2
Views: 2,015
Posted By Vadivel
Sample Table Structure: -----------------------...

Sample Table Structure:
-----------------------

CREATE TABLE [dbo].[UserTable] (
[RowNumber] [char] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[UserName] [varchar] (20) COLLATE...
Forum: SQL Language December 30th, 2004, 01:23 AM
Replies: 5
Views: 4,656
Posted By Vadivel
DECLARE @ptrval binary(16) SELECT @ptrval =...

DECLARE @ptrval binary(16)
SELECT @ptrval = TEXTPTR(pr_info)
FROM pub_info pr, publishers p
WHERE p.pub_id = pr.pub_id
AND p.pub_name = 'New Moon Books'
UPDATETEXT pub_info.pr_info @ptrval 0 3...
Forum: SQL Language December 30th, 2004, 01:15 AM
Replies: 5
Views: 4,656
Posted By Vadivel
First of all you need to use "UpdateText" and not...

First of all you need to use "UpdateText" and not "Update" for Text/nText/Image columns.

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Basics December 30th, 2004, 01:10 AM
Replies: 3
Views: 2,155
Posted By Vadivel
I just got this from 4guysfromrolla ... check...

I just got this from 4guysfromrolla ... check whether this would help you in any way ...

*****Code STARTS here*****
Function Highlight(Search_Str as String, _
InputTxt as String, _
StartTag as...
Forum: SQL Server 2000 December 29th, 2004, 10:08 AM
Replies: 5
Views: 1,085
Posted By Vadivel
Hmm wild guess :: Is it something to do with...

Hmm wild guess :: Is it something to do with Memory?

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP.NET 1.1 December 29th, 2004, 09:59 AM
Replies: 1
Views: 1,614
Posted By Vadivel
<%@ language= "VBscript" %> <% Option Explicit ...

<%@ language= "VBscript" %>
<% Option Explicit


Dim NewMail
Set NewMail = Server.CreateObject("CDONTS.NewMail")

NewMail.To= "[email protected]"
NewMail.From= "[email protected]"...
Forum: ASP.NET 1.1 December 29th, 2004, 09:52 AM
Replies: 4
Views: 3,007
Posted By Vadivel
Check whether this would help :: 1....

Check whether this would help ::

1. http://www.dotnet247.com/247reference/msgs/5/26214.aspx
2. http://www.google.com/search?hl=en&lr=&q=Images+in+DataGrid

Best Regards
Vadivel

MVP...
Forum: Classic ASP Basics December 29th, 2004, 09:36 AM
Replies: 2
Views: 1,190
Posted By Vadivel
Check out this ::...

Check out this :: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnscrpt/html/dhtmlprint.asp

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: Classic ASP Basics December 29th, 2004, 09:34 AM
Replies: 6
Views: 9,067
Posted By Vadivel
I tested this in SQL Server 2000: I have an...

I tested this in SQL Server 2000:

I have an Varchar column by name "age". The below query would SUM the column value and display.

Select Sum(Convert(int, age)) From CustomerData

Best...
Forum: ASP Pro Code Clinic December 29th, 2004, 09:23 AM
Replies: 10
Views: 2,257
Posted By Vadivel
*****Code snippet STARTS here***** <%@...

*****Code snippet STARTS here*****
<%@ language= "VBscript" %>
<% Option Explicit


Dim NewMail
Set NewMail = Server.CreateObject("CDONTS.NewMail")

NewMail.To= "[email protected]"...
Forum: ASP Forms December 29th, 2004, 09:14 AM
Replies: 7
Views: 1,890
Posted By Vadivel
http://www.google.com/search?hl=en&lr=&q=populatin...

http://www.google.com/search?hl=en&lr=&q=populating+a+dropdown+based+on+another+dropdown+in+ASP -- Hope this would help you!

Best Regards
Vadivel

MVP ASP/ASP.NET
http://vadivel.thinkingms.com
Forum: ASP Forms December 29th, 2004, 09:08 AM
Replies: 2
Views: 1,308
Posted By Vadivel
Your code won't work and it would throw an error...

Your code won't work and it would throw an error only .. its because in ASP the include directives are resolved before the server-side script portions are processed.

But there are work arounds...
Forum: ASP Pro Code Clinic December 27th, 2004, 01:37 AM
Replies: 1
Views: 984
Posted By Vadivel
Session_OnStart event occurs when the server...

Session_OnStart event occurs when the server creates a new session. The server processess this script prior to executing the requested page. This event is a place for you to set any session-wide...
Forum: ASP Forms December 27th, 2004, 01:25 AM
Replies: 1
Views: 796
Posted By Vadivel
Suresh, Check out, 1....

Suresh,

Check out,
1. http://authors.aspalliance.com/brettb/SearchingIndexServerWithAsp.asp -- Using Microsoft Index Server

2. www.aspemporium.com/codelib.aspx?pid=157&cid=5 -- custom class
...
Forum: Classic ASP Databases December 27th, 2004, 01:16 AM
Replies: 3
Views: 3,072
Posted By Vadivel
Yeah om prakash is right. But i guess you should...

Yeah om prakash is right. But i guess you should be aware that text columns have limitations that varchar columns don't have!

For ex: you can't index them, and you can't use them with some cursor...
Forum: Classic ASP Databases December 27th, 2004, 01:07 AM
Replies: 2
Views: 703
Posted By Vadivel
Are you saying in the database you are not able...

Are you saying in the database you are not able to update after certains number of words? if yes .. just check the datatype/size you have mentioned for that particular field in your database.

It...
Forum: ASP Pro Code Clinic December 24th, 2004, 03:15 PM
Replies: 9
Views: 2,873
Posted By Vadivel
Are you targeting IE and Netscape? If IE alone...

Are you targeting IE and Netscape?
If IE alone .. you can make use of Windows Script Host and File System Object to achieve this.

chk out http://www.experts-exchange.com/Web/Q_11013581.html .....
Forum: ASP Forms December 24th, 2004, 02:45 PM
Replies: 1
Views: 881
Posted By Vadivel
1. Introduction to IIS6.0 ::...

1. Introduction to IIS6.0 :: http://www.microsoft.com/resources/documentation/IIS/6/all/techref/en-us/iisRG_IIS.mspx

2. Configuring Internet sites and services ::...
Forum: Classic ASP Components December 24th, 2004, 02:35 PM
Replies: 7
Views: 1,316
Posted By Vadivel
oh yeah Imar is right. You are turning on the...

oh yeah Imar is right. You are turning on the buffer too late in your code. I guess it might work when you put the response.buffer = true above the html tag!

Best Regards
Vadivel

MVP...
Forum: Classic ASP Components December 24th, 2004, 02:19 PM
Replies: 1
Views: 3,630
Posted By Vadivel
Would this...

Would this http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmp6sdk/htm/embeddingwindowsmediaplayer.asp help you?

Best Regards
Vadivel

MVP ASP/ASP.NET...
Forum: Beginning VB 6 December 23rd, 2004, 01:42 AM
Replies: 8
Views: 2,709
Posted By Vadivel
Though I am not clear on what you are trying to...

Though I am not clear on what you are trying to achieve .. I presume that you want to hide certain textboxes for certain users. If my understanding is right... read on .... You could the visibility...
Forum: ASP.NET 1.1 December 23rd, 2004, 01:21 AM
Replies: 3
Views: 4,676
Posted By Vadivel
Gadhiav, The hyperlink columns...

Gadhiav,

The hyperlink columns DataNavigateUrlFormatString only supports one parameter. If you want more than one parameter in a hyperlink .. then make use of TemplateColumn with an...
Showing results 251 to 275 of 307

 




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