I have a query that I am putting some data in a temp table then retrieving it through another query. The query works fine in my database editor, but then I run the same code on my site I get an error that table tblTemp doesn't exist. Does the ASP.NET SQLDatasoure support these types of actions? I am using the same account in the DB editor and the website.
select idRecord.idfrom idRecordwhere id = 123456into temp tblTemp;select profileRecord.usernamefrom profileRecordwhere id in (select id from tbltemp)