Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6540 - 6569 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6540
Hai all, i have 3 pages, first page i just get number of text boxes using text box, second page depends upon the number i should display the text box and enter...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
7:05 am
6541
Name the textboxes something like "textbox1", "textbox2" etc, then store the number of textboxes the user requested in a hidden form field in the second page....
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
7:46 am
6542
What is it you want to do? A text box is just a string value so you can use any string manipulation functions and things like len() etc. Dan ...
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
7:46 am
6543
i just asked can we use last focus(),set focus() methods in text box. Jegatha Dan Powderhill <dan.powderhill@...> wrote: What is it you want to do?...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
8:01 am
6544
here we can get the number of ttext boxex through session also.But i want to know how to name the text boxes in page2. eg: n=4 first method: for Txtb=1 to 4 ...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
8:11 am
6545
In client-side javascript you can use .focus() to give any element that can receive focus the focus. Dan ________________________________ From:...
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
8:19 am
6546
In page 2 store the number of textboxes in either the session, or (my preferred method) in a hidden text field. Name them in page 2 like this :- numTextboxes =...
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
8:24 am
6547
thank u Dan,I will try with this. Jegatha Dan Powderhill <dan.powderhill@...> wrote: In page 2 store the number of textboxes in either the session,...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
8:42 am
6548
No Dan,i couldn't get the answer. the result is blank page only. Jegatha Dan Powderhill <dan.powderhill@...> wrote: In page 2 store the number of...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
9:12 am
6549
Can you post your code? Dan ________________________________ From: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com]...
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
9:17 am
6550
Check for your connection status with response.write cn.status If it is 1 Then send me the entire page so that I can give you soln. -- Balaji V...
Balaji vishnubhotla
urs_balu
Offline Send Email
Aug 1, 2005
9:24 am
6551
code is /***second page **/ <% session("txt")=request.form("TxtBox") txtbox=request.form("TxtBox") if (txtbox>0) then response.write "Name Of Text Fields" ...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
9:54 am
6552
hi all... i just want to know if anyone here know how to save asp output to text file automatically.pleeease help me... ... Anda ber-Yahoo!? Kini dengan...
ASP Programmer
asp_coding
Offline Send Email
Aug 1, 2005
10:07 am
6553
<%response.write"<input type=""text"" name=""txt""&i& size=""20"">"%> Should be : <%response.write"<input type=""text"" name=""txt" &i& """ size=""20"">"%> And...
Dan Powderhill
danaspelite
Offline Send Email
Aug 1, 2005
10:11 am
6554
Here is an example <% Const ForReading = 1, ForWriting = 2, ForAppending = 8 Const TristateUseDefault = -2 Const TristateTrue = -1 Const TristateFalse = 0 %> ...
Jerome West
jerome_west00
Offline Send Email
Aug 1, 2005
10:17 am
6555
Here is an example <% Const ForReading = 1, ForWriting = 2, ForAppending = 8 Const TristateUseDefault = -2 Const TristateTrue = -1 Const TristateFalse = 0 %> ...
jerome_west00
Offline Send Email
Aug 1, 2005
10:23 am
6556
Hi Jegatha, use the following Code in ex.asp <% if Request("numTextBoxes") = "" Then %> <FORM NAME="testform" action="" method=post > <input type=text...
Balaji vishnubhotla
urs_balu
Offline Send Email
Aug 1, 2005
11:03 am
6557
thank u Dan, its working fine. regards, Jegatha Dan Powderhill <dan.powderhill@...> wrote: <%response.write"<input type=""text"" name=""txt""&i&...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
11:35 am
6558
Thank u Balaji. Jegatha Balaji vishnubhotla <balaji.vishnubhotla@...> wrote: Hi Jegatha, use the following Code in ex.asp <% if Request("numTextBoxes") =...
Jegatha
jose_ph_84
Offline Send Email
Aug 1, 2005
12:19 pm
6559
http://www.freevbcode.com/ShowCode.Asp?ID=89 ... From: "ASP Programmer" <asp_coding@...> To: <AspClassicAnyQuestionIsOk@yahoogroups.com> Sent: Monday,...
Mischa Kroon
aemca_san
Offline Send Email
Aug 1, 2005
12:27 pm
6560
Have a real simple login form, which has been working for years. Up until last friday, the form was accessed as "www.xyz.com/index.asp" ....last Friday, the...
erickestler
Offline Send Email
Aug 1, 2005
4:51 pm
6561
Is the target of the form based on a relative url ? or is it set to the domain ? This might be the cause of things. ... From: "erickestler"...
Mischa Kroon
aemca_san
Offline Send Email
Aug 1, 2005
6:40 pm
6562
hi all i have 6 categories, 1.intro1 2.into2 ...... 6.intro6 if i click this the content should be in the same page for each intro i just use code like, <a...
Jegatha
jose_ph_84
Offline Send Email
Aug 2, 2005
5:05 am
6563
Please provide more code. On a normal html page what you have provided should bring the line containing <a name="intro"> to the top of the browser unless the...
Bob Filipiak
bobfilipiak
Offline Send Email
Aug 2, 2005
12:31 pm
6564
Microsoft OLE DB Provider for ODBC Drivers error '800a0046' [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed /spss/include/vbsUpload.asp,...
jumahijah
Online Now Send Email
Aug 3, 2005
2:55 am
6565
That line in itself shouldn't cause an error, particularly not an ODBC error as there's no ODBC-related code on it. What are the lines surrounding that line,...
Dan Powderhill
danaspelite
Offline Send Email
Aug 3, 2005
7:55 am
6566
Hai All! How to insert some symbols like(Mu, Pi, X bar etc...) in textbox? Thanx in Advance... Seetha...
Seetha
poojsee
Offline Send Email
Aug 3, 2005
10:26 am
6567
Look here to get the character code for whatever symbol you wish to display :- http://www.lookuptables.com/ Then enter it in you HTML as a character entity -...
Dan Powderhill
danaspelite
Offline Send Email
Aug 3, 2005
10:29 am
6568
Hey everyone. I'm just starting out in the world of ASP, and I have a very basic question. Can anyone tell me why when I run the following code in a script: if...
Geoff
geon5600
Offline Send Email
Aug 3, 2005
12:36 pm
6569
Hi Geoff, The problem is that the function call is returning a value which has nowhere to go. You will need to assign it to a variable or write it to the ...
Iian Neill
argimenes
Offline Send Email
Aug 3, 2005
12:43 pm
Messages 6540 - 6569 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help