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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 11873 - 11902 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11873
I seriously need help on the reports that I created. I created a reports section to generate the data through Excel. However, when I select one of the...
tgmiller5
Offline Send Email
Nov 3, 2006
7:43 pm
11874
Your SQL statement will limit the records; you'll need to show the code of the page "receiving" the data from this form. Be sure to "response.write" your SQL...
Chris Hagwood
chris_hagwood
Offline Send Email
Nov 3, 2006
8:58 pm
11875
Also, in your OPTION tag, you are selecting all records passed in??? Why??? Assuming your data is posted back as a querystring: Change your code to this: ...
mark wills
markrobertwills
Offline Send Email
Nov 4, 2006
10:31 am
11876
Hi: Can any one please tell me how to i separate date from that string. mdate yyyy-mm-dd 2006-11-06-09-58-22 2006-11-07-15-34-08 2006-11-08-18-59-01 Thanks. ...
Kirpa Mehta
kirpa226
Offline Send Email
Nov 10, 2006
5:26 pm
11877
<% Dim TheString,TheYear,TheMonth,TheDay,TheDate TheString="2006-11-06-09-58-22" TheYear=Mid(MyString,1,4) TheMonth=Mid(MyString,6,2) TheDay=Mid(MyString,9,2) ...
mark wills
markrobertwills
Offline Send Email
Nov 10, 2006
5:55 pm
11878
Assuming you want the date in format yyyy-mm-dd and the input data is always formatted the way you provided in the example: arDateString =...
Chris Hagwood
chris_hagwood
Offline Send Email
Nov 10, 2006
8:39 pm
11879
Hey group, It would be of great help if someone could guide me on how to deal with the above topic. Le'mme explain.. We have an ASP application which runs...
Ms. Geeba Benoie
geeba_g
Offline Send Email
Nov 12, 2006
6:51 am
11880
The issue isn't MS - Access, apache won't host ASP pages. Have a google on Chilisoft ASP - will allow you to run ASP on Linux. _____ From:...
Ben Sargent
londoncitroen
Offline Send Email
Nov 12, 2006
8:34 am
11881
AFAIK I think also Chillisoft won't support database access, as there is no underlying ADO/COM system... Mark Wills, MSc MIAP http://www.markwills.co.uk ... ...
mark wills
markrobertwills
Offline Send Email
Nov 12, 2006
2:12 pm
11882
Not sure either but transfering the db to, say, MySQL is a quick job as opposed to recoding the ASP pages into PHP or something else which will require a...
Ben Sargent
londoncitroen
Offline Send Email
Nov 12, 2006
6:01 pm
11883
Thanks Ben, It is not my call to download Chilisoft, there are many others working on this server & wouldn't want to mess around with them. Would it help if I...
Ms. Geeba Benoie
geeba_g
Offline Send Email
Nov 12, 2006
9:00 pm
11884
ASP won't run on Linux. Chilisoft is a workaround. _____ From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of...
Ben Sargent
londoncitroen
Offline Send Email
Nov 13, 2006
1:00 am
11885
DSN - less connections relate to Microsoft technologies, so, IMO, the term "DSN - less" doesn't apply, since you are not connecting to a Microsoft platform. ...
mark wills
markrobertwills
Offline Send Email
Nov 13, 2006
9:23 am
11886
Hi I'm writing a portal, and it supports 8 different languages. I've got it selecting the appropriate langauges no problem, I use: <%If...
mark wills
markrobertwills
Offline Send Email
Nov 17, 2006
8:53 pm
11887
Hi Mark, ... A Select Case would probably be more appropriate, as it is a single command. You can also use a Server.Execute statement to avoid having the ...
Shawn K. Hall
shawn_ra
Online Now Send Email
Nov 17, 2006
10:02 pm
11888
Hello All: I am having an issue and I believe it has to do with my SQL Statement or Access in General. I have an ASPX page, that is being used to add photos to...
Mills, Andy R. (Regen...
montyphython...
Offline Send Email
Nov 21, 2006
9:07 pm
11889
Did you try using a "%" instead of "*"? so the SQL statement would be "select max(path) from tblphotos where path like 'Image%' " "Mills, Andy R. (Regency)"...
K Rao
kpraoasp
Offline Send Email
Nov 22, 2006
12:29 am
11890
Hi Andy, ... Max() returns a null value if no records are found, which means you'll get a ROW result for that query even if there are no associative values. ...
Shawn K. Hall
shawn_ra
Online Now Send Email
Nov 22, 2006
1:34 am
11891
Is image a reserved word? I have had this issue before. Try putting Image in [ ] brackets _____ From: active-server-pages@yahoogroups.com ...
Ben Sargent
londoncitroen
Offline Send Email
Nov 22, 2006
6:21 am
11892
I am building a web site for a friend who would like to have a form filled in and have the information from this form (including email address) sent to them in...
Madòrick
madorick
Offline Send Email
Nov 26, 2006
3:53 pm
11893
Hi Madòrick, ... There are a number of examples for this on aspfaq: http://classicasp.aspfaq.com/email/how-do-i-send-e-mail-from-asp.html ...
Shawn K. Hall
shawn_ra
Online Now Send Email
Nov 27, 2006
7:53 am
11894
Thanks, I was hoping for an HTML solution but this will work for me... Ray Brown ... asp.html...
Madòrick
madorick
Offline Send Email
Nov 27, 2006
11:05 pm
11895
Can you point me to the right way. Tks, Nuno....
Nuno Fernando Afonso ...
naoliveira
Offline Send Email
Nov 28, 2006
5:25 am
11896
Hi: There are three tables in my database. Table Main I use to give stars and table Star Redemption is used to give prize. There is another table name Prize...
Kirpa Mehta
kirpa226
Offline Send Email
Nov 28, 2006
5:41 am
11897
I think I would tend to do the math in ASP, and then UPDATE the appropriate tables with the results. Consider transactions for this for atomicity/reliability....
mark wills
markrobertwills
Offline Send Email
Nov 28, 2006
10:38 am
11898
Nuno: ASP.Net is the way to go. Uploading is one line of code, with no added components to purchase and deploy. It is native to the framework. Then use a...
Mills, Andy R. (Regen...
montyphython...
Offline Send Email
Nov 28, 2006
1:14 pm
11899
Andy, Is there an example to view using .net? I'm currently using this solution http://www.4guysfromrolla.com/webtech/102500-1.shtml but am looking for...
John Moss
yshopper
Offline Send Email
Nov 29, 2006
9:02 am
11900
John: I am not sure of a specific link to give you, sorry. I used SAMS books to learn. But if you Google DAtalist / Datagrid, I am sure you will get tons of ...
Mills, Andy R. (Regen...
montyphython...
Offline Send Email
Nov 29, 2006
2:01 pm
11901
I'm new to ASP.NET, and rewriting my companies site from classic ASP. I had a crash course in .NET, but it didn't cover forms and I need a bit more information...
zerokoo149
Offline Send Email
Nov 30, 2006
4:11 pm
11902
ASP.NET was designed to use 1 form and uses page events to determine what action to take. So instead of traditional classic ASP form post backs, it's more...
Mark E
meckeard2000
Offline Send Email
Nov 30, 2006
4:37 pm
Messages 11873 - 11902 of 12395   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