Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 11027 - 11057 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11027
Call me naïve, but I am looking for a decent RSS script which will work with versions 0.9, 1 and 2 of RSS and will also merge several RSS feeds together and...
Ben Shaffer
bensdeltathree
Offline Send Email
Sep 1, 2005
7:00 am
11028
Max: I have a book ASP.Net unleashed by SAMS publishing (bright orange book). It has some very good "real world" examples in the back of the book. I would ...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Sep 1, 2005
11:35 am
11029
Thanks Andy. I'm yet to see any books in the stores here dealing specifically with asp.Net. I'll try get someone to purchase ' ASP.Net unleashed' for me on the...
Maxwell Sabwa
maxwellsabwa
Offline Send Email
Sep 1, 2005
4:38 pm
11030
Hi there, I have a small issue. I have an ASP page that contains several dropdown fields. Each of the dropdown's data consists of sentences. When I select a...
arnnie2005
Offline Send Email
Sep 1, 2005
4:39 pm
11031
Put quotes around the VALUE field <option value="The house is white"> ... From: active-server-pages@yahoogroups.com ...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Sep 1, 2005
4:43 pm
11032
Thank you. But Sorry, it still does the same! Doesn't work... Adrian Forbes - ITD <adrian.forbes@...> wrote:Put quotes around the VALUE field <option...
arnniema martinez
arnnie2005
Offline Send Email
Sep 1, 2005
9:41 pm
11033
Hi Arnnie, ... If you have commas in the value and are using several fields of the same name you'll have this happen. Use separate fieldnames. Regards, Shawn...
Shawn K. Hall
shawn_ra
Online Now Send Email
Sep 1, 2005
10:06 pm
11034
You'll need to show us the relevant parts of the originating page and the ASP code involved. Dave S ... From: arnniema martinez To:...
David Smart
smartware_co...
Offline Send Email
Sep 1, 2005
10:28 pm
11035
Have a look at your local library for .NET books. I borrowed an elementary one on ASP.NET (VB) and one on C#. I wouldn't want to own either, but they were...
David Smart
smartware_co...
Offline Send Email
Sep 1, 2005
10:41 pm
11036
Well, let me start by saying that the dropdown values are loaded from a SQL database. all the values are sentences. not of a single word. This is my code: ...
arnnie2005
Offline Send Email
Sep 2, 2005
8:15 pm
11037
Hi, is me again. I got it to work. I play with it and it works now. This is my new code as follow: <option value= "<%=rs1("CenterDescription")%> "> <%=rs1...
arnnie2005
Offline Send Email
Sep 2, 2005
8:16 pm
11038
Hi: Is it possible to pass some values too in respons.redirect method Thanks, __________________________________________________ Do You Yahoo!? Tired of spam?...
Kirpa Mehta
kirpa226
Offline Send Email
Sep 2, 2005
9:10 pm
11039
Yes. Kirpa Mehta <kirpa226@...> Sent by: active-server-pages@yahoogroups.com 09/02/2005 13:39 Please respond to active-server-pages To:...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Sep 2, 2005
11:08 pm
11040
What happened when you tried it? Dave S ... From: Kirpa Mehta To: active-server-pages@yahoogroups.com Sent: Saturday, September 03, 2005 6:39 AM Subject: [ASP]...
David Smart
smartware_co...
Offline Send Email
Sep 2, 2005
11:08 pm
11041
I have two variables in my page: <form action="searchstudent.asp"> Student No:<input type="text" name="studno"> Department Name:<input type="text"...
Srikant Sharma
srikant226
Offline Send Email
Sep 3, 2005
5:27 am
11043
What is the meaning of that error I run the query with constant value and even the value is present in the database than why it gives error Set rs =...
Srikant Sharma
srikant226
Offline Send Email
Sep 3, 2005
6:45 am
11044
I'm finding it very difficult to understand what you are asking or what you are trying to do. I wonder if you need more information on how data and process...
David Smart
smartware_co...
Offline Send Email
Sep 3, 2005
9:24 am
11045
Please post the rest of the code too. This error is unlikely to have been generated from this particular statement. The error suggests that you have retrieved...
David Smart
smartware_co...
Offline Send Email
Sep 3, 2005
9:35 am
11046
This works and the right records are inserted into the right place, but I receive the error "Either BOR or EOF is True, or the current record has been...
Christie Mason
cmasonvargas
Offline Send Email
Sep 3, 2005
7:44 pm
11047
form1.asp <html> <body> <script> function win1() { ...
Kirpa Mehta
kirpa226
Offline Send Email
Sep 3, 2005
7:45 pm
11048
Hi Christie, ... You've enumerated all the records in the resultset on previous iterations, then you're "moving next" when you're at the last record, causing...
Shawn K. Hall
shawn_ra
Online Now Send Email
Sep 3, 2005
8:11 pm
11049
Thank you, I knew I was stinking thinking somewhere but couldn't grab it. Christie Mason ... From: active-server-pages@yahoogroups.com ...
Christie Mason
cmasonvargas
Offline Send Email
Sep 3, 2005
8:23 pm
11050
Still being dumb but below results in same EOF or BOF is true error but now also points to an error at the line indicated in the code below. Correct records...
Christie Mason
cmasonvargas
Offline Send Email
Sep 3, 2005
8:54 pm
11051
Hi Christie, ... You should always use ".value" to ensure you're getting the correct typed result, otherwise the assignment above may obtain a pointer to the ...
Shawn K. Hall
shawn_ra
Online Now Send Email
Sep 3, 2005
9:08 pm
11052
Basic idea behind this is allowing someone to copy a parent record, insert it as a new record with a new ID and then select from all child tables records that...
Christie Mason
cmasonvargas
Offline Send Email
Sep 3, 2005
9:40 pm
11053
I'm stepping back to your original question, as I think Shawn's first thoughts might have been slightly in the wrong direction. You don't need the "If Not...
David Smart
smartware_co...
Offline Send Email
Sep 4, 2005
12:17 am
11054
First thing to note ... this isn't done by ASP, you need to do it in the browser using JavaScript. This means that the action="form2.asp" in the second page's...
David Smart
smartware_co...
Offline Send Email
Sep 4, 2005
8:48 am
11055
Yippee yahooey. Thank you, you're name is very appropriate and it's a much better morning thanks to you. Had to go offline to deal with my septic system...
Christie Mason
cmasonvargas
Offline Send Email
Sep 4, 2005
2:40 pm
11056
I'm glad it worked. As (I hope) I indicated, I was using someone else's expertise, having found the technique on the net. Dave S ... From: Christie Mason To:...
David Smart
smartware_co...
Offline Send Email
Sep 4, 2005
10:25 pm
11057
This one should have been easy but I'm getting a syntax error (missing operator in query expression 'Your Order is Being Processed'. <CODE> mySQL = "Insert...
Christie Mason
cmasonvargas
Offline Send Email
Sep 5, 2005
12:52 am
Messages 11027 - 11057 of 12403   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