http://groups.yahoo.com/group/AspNetModelViewController/ has free discussion on ASP.net MVC Community Preview http://blog.charlescarroll.com/chazblog/?p=552 ...
Wrox recently launched a new "classic" ASP 3 resource http://asp3wiki.wrox.com It does include the complete text of the bestselling ASP 3 book, Beginning ASP...
Hello! I have a project assigned to me which requires a bit of ASP VBScript, but to be totally honest I don't know what much about the language. All my work...
Does anyone ever use IIS in windows XP i already create website in asp n database using mdb access but i want update my database using web i created already ...
Hello, This slightly ties into a earlier post but now I have made progress! I have a vbs file I managed to write and it works! It needs a bit of tweaking for...
Hello, I've run into this before. You may want to check your query...the sql query you've created could be the root cause of this trouble. Try simplifying the...
It's proabably a rights issue, make sure that the correct user has write permission on the MDB file. (IUSR_MACHINENAME) I beleive is the correct one for XP. ...
besides mischa's reply, also make sure the database is not open while trying to update ... From: mischa kroon To: AspClassicAnyQuestionIsOk@yahoogroups.com ...
wscript.Echo becomes response.write strUserName=request.querystring("UserName") will pickup the value from a GET i.e. yourscript.aspx?user=BlahSmith or a form...
I had a simple asp page which pulled and displayed user info from the AD. Yesterday it was working, but today I get errors on simple things like objRootDSE =...
Thanks for the info, but that didn't work. Here is the full page code: <%@ Language="VBScript" %> <% Dim strUserName Dim adoCommand, adoConnection, strBase,...
I tried running the page under a domain admin account and it still doesn't work. Is there anything actually wrong with the code? or could this be a change of...
I also thin GetObject is not going to work well or at all under ASP. CreateObject => Server.CreateObject is the way ASP creates/gets objects. I do think the...
I messed around with your change, but I couldn't get anything working. I started back over with disabling everything and one by one seeing what is error-ing...
Ok I think this will be a rights issue. Since your executing from asp your using the account set up in the application pool to execute this code. This is a...
I'll look into the links you sent, but I had this page up and working on a W2K3 IIS server and no settings have been changed since I set it up a couple weeks...
I'll look into the links you sent, but I had this page up and working on a W2K3 IIS server and no settings have been changed since I set it up a couple weeks...
My problem is when I do a recalculate (RECAL) the program is deleting the last options line instead of deleting the line associated with the item that has been...
First of all your statement "nothing has changed" is a mistake in logic. When something breaks a better assumption is "something changed whether I like it or...
I totally understand where you are coming from. When I converted the vbs file to asp and had it working, I copied all the code and saved it safely away. I...
Hi, I am beginner to ASP and recently found getrows() fuction and works wonder. However, I am having problem where whenever there is only one record in the...
use the following way if rstemp.recordcount > 0 then huangpower <huangpower@...> wrote: Hi, I am beginner to ASP and recently found getrows() fuction and...
IsArray() is your friend! Here is an example: Dim objCmd, objRS, arrRS Set objCmd = Server.CreateObject("ADODB.Command") ' Use a stored procedure to read from...
Hi, thanks for your suggestion. Can you tell me how I would format the field for display. Since if using array I need to use somethinglike rsobj((0,counter), ...
1. The no-record case is trapped early by: ' Read the answer If Not objRS.EOF Then arrRS = objRS.GetRows Else Response.Write "<p>No data returned!</p>" End IF ...
EOF doesn't trap BOF and in this case you're trying to trap BOF so you need to add that to your test: If Not (objRS.BOF) And Not (objRS.EOF) Then hth, Tom...