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
Nov 3, 2006 8:58 pm
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...
11875
mark wills
markrobertwills
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
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
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
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
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
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
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
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
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
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
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
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
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...
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
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
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
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
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
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
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
Nov 28, 2006 5:25 am
Can you point me to the right way. Tks, Nuno....
11896
Kirpa Mehta
kirpa226
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
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...
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
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...
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
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
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...