Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

active-server-pages · Active Server Pages Developers' List

The Yahoo! Groups Product Blog

Check it out!

Group Information

? 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.

Messages

Advanced
Messages Help
Messages 11873 - 11902 of 12478   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
11873 tgmiller5 Send Email Nov 3, 2006
7:43 pm
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...
11874 Chris Hagwood
chris_hagwood Send Email
Nov 3, 2006
8:58 pm
Your SQL statement will limit the records; you'll need to show the code of the page "receiving&quot; the data from this form. Be sure to "response.write" your SQL...
11875 mark wills
markrobertwills Send Email
Nov 4, 2006
10:31 am
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: ...
11876 Kirpa Mehta
kirpa226 Send Email
Nov 10, 2006
5:26 pm
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. ...
11877 mark wills
markrobertwills Send Email
Nov 10, 2006
5:55 pm
<% 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) ...
11878 Chris Hagwood
chris_hagwood Send Email
Nov 10, 2006
8:39 pm
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 =...
11879 Ms. Geeba Benoie
geeba_g Send Email
Nov 12, 2006
6:51 am
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...
11880 Ben Sargent
londoncitroen Send Email
Nov 12, 2006
8:34 am
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:...
11881 mark wills
markrobertwills Send Email
Nov 12, 2006
2:12 pm
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 ... ...
11882 Ben Sargent
londoncitroen Send Email
Nov 12, 2006
6:01 pm
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...
11883 Ms. Geeba Benoie
geeba_g Send Email
Nov 12, 2006
9:00 pm
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...
11884 Ben Sargent
londoncitroen Send Email
Nov 13, 2006
1:00 am
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...
11885 mark wills
markrobertwills Send Email
Nov 13, 2006
9:23 am
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. ...
11886 mark wills
markrobertwills Send Email
Nov 17, 2006
8:53 pm
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...
11887 Shawn K. Hall
shawn_ra Send Email
Nov 17, 2006
10:02 pm
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 ...
11888 Mills, Andy R. (Regen...
montyphython... Send Email
Nov 21, 2006
9:07 pm
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...
11889 K Rao
kpraoasp Send Email
Nov 22, 2006
12:29 am
Did you try using a "%" instead of "*"? so the SQL statement would be "select max(path) from tblphotos where path like 'Image%&#39; " "Mills, Andy R. (Regency)"...
11890 Shawn K. Hall
shawn_ra Send Email
Nov 22, 2006
1:34 am
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. ...
11891 Ben Sargent
londoncitroen Send Email
Nov 22, 2006
6:21 am
Is image a reserved word? I have had this issue before. Try putting Image in [ ] brackets _____ From: active-server-pages@yahoogroups.com ...
11892 Madòrick
madorick Send Email
Nov 26, 2006
3:53 pm
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...
11893 Shawn K. Hall
shawn_ra Send Email
Nov 27, 2006
7:53 am
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 ...
11894 Madòrick
madorick Send Email
Nov 27, 2006
11:05 pm
Thanks, I was hoping for an HTML solution but this will work for me... Ray Brown ... asp.html...
11895 Nuno Fernando Afonso ...
naoliveira Send Email
Nov 28, 2006
5:25 am
Can you point me to the right way. Tks, Nuno....
11896 Kirpa Mehta
kirpa226 Send Email
Nov 28, 2006
5:41 am
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...
11897 mark wills
markrobertwills Send Email
Nov 28, 2006
10:38 am
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....
11898 Mills, Andy R. (Regen...
montyphython... Send Email
Nov 28, 2006
1:14 pm
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...
11899 John Moss
yshopper Send Email
Nov 29, 2006
9:02 am
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...
11900 Mills, Andy R. (Regen...
montyphython... Send Email
Nov 29, 2006
2:01 pm
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 ...
11901 zerokoo149 Send Email Nov 30, 2006
4:11 pm
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...
11902 Mark E
meckeard2000 Send Email
Nov 30, 2006
4:37 pm
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...
Messages 11873 - 11902 of 12478   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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