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...
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...
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: ...
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. ...
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...
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 ... ...
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...
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...
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...
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. ...
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 ...
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...
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)"...
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. ...
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...
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...
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....
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...
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: 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 ...
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...
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...