Reputation: 17
What I need to do is to create a table within my database at runtime to store some data then store it in another table and delete the current or Temp table. It is a security issue where I can not use session or caching in my application any help will be appreciated .
Upvotes: 1
Views: 1806
Reputation: 1296
you can do it using ado.net like any other sql statement create table with your attributes then insert the table data in another table then delete the table but i am not sure for delete the table
Upvotes: 1