This topic is locked

Beta V2.2 Bug

7/3/2003 9:51:34 AM
ASPRunnerPro General questions
S
Simon author

Hi,

Firstly I'd like to say how much I like ASPRunner, and that if a few issues are sorted out then I would be prepared to buy it.
I have not tested V2.2 extensively yet but after one build these are the problems I have found.
1.If there are any field names that are numerical (not field types) in the table schema, these fields do not appear on the edit screen.
I have got round this by adding a check into the AddWrappers Function as follows

if isnumeric(strName) or(InStr(strName, " ")>0 or InStr(strName, "-")>0 or InStr(strName, "/")>0) and Left(strName,1)<>strLeftWrapper then
2.Fields formatted as Time within ASPRunner appear correctly on the list page but includes the date on the edit page.
3. And this is the biggest problem and has been mentioned before by dondraper on 04/06 - (ive copied his text below)
"Why do I have to choose a key field for editing to get it to appear on an "add" form? During edit, the primary key should not be edited so should not this be saved in a hidden field? Currently, one must make a primary key field editable during an "edit" just to get it to appear in an "add" form where it is a must. "
Many Thanks

Simon White

Sergey Kornilov admin 7/10/2003

Simon,
thanks for pointing ne to this issue with numeric field name. I've added this code in the latest beta which can be found here ( updated July 9th):

http://www.asprunner.com/files/asprun22.exe
On the edit page you see data excatly how it stored in the database without any formatting. That's why datetime values can be displayed different ways on the list page and on the edit page.
Regarding your last question: I don't see a real problem here. With proper database design when key column is autonumber in MS Access or identity field in MS SQL this field will be readonly on the edit page. I will appreciate if you can explain when this design is incorrect.
Best regards,

Sergey Kornilov