Reana Botros
Reana Botros

Reputation: 17

Create SQL Server table at runtime using asp.net

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

Answers (1)

Eslam Soliman
Eslam Soliman

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

Related Questions