Click to See Complete Forum and Search --> : duplicate access design view in asp


esthera
01-12-2006, 04:16 AM
I have a db taht I moved the frontend from access to asp. (but backend is still in access)
Is there anyway to duplicate the frontend design view for queries from access?

What do you recommend?

Ubik
01-12-2006, 11:49 AM
I have not found a way to do this other than re-coding it all by hand in asp.

But recoding access forms shouldn't be too hard, just a little tedious.

Bullschmidt
01-15-2006, 09:06 PM
You can do something like this:

Response.Write strSQL & "<br>"

And then on your page where you see the SQL statement you can copy and paste that into a new Access query's design mode (actually in the SQL view). And of course you'd want to change any instances of % (i.e. the Like wildcard for ASP) to be * instead for inside Access.

esthera
01-16-2006, 01:13 AM
no actually i am doing the opposite -- I wrote a program with many search features but my client is used to the design view of sql query in access and it has more flexibility then what i wrote so I was worndering if there was a way to duplicate in asp.

Bullschmidt
01-16-2006, 01:06 PM
Well any SQL statement that works in Access should be able to be copied and pasted into your design code for an ASP page too (just change a * to be % and of course deal appropriately with any parameters)...