hi there.
I'm kinda new to ASP.NET and I have much more experience with windows forms. I need to show a table with some result data in a page Now, with winforms I would do something like this
ResultForm myForm = new ResultForm();
myForm.ResultDataTable = dataTable;
myForm.Show();
Any tip on how could I do something similar with Asp.Net?
tks