reloading user controls
Hi
I build a web application with a table. In each cell of the table i needed a button with different attributes. Becouse a table dousn't support buttons I used hypertext which reloaded the page with some parameters, like this:
str = str+ "<a href=\"webform1.aspx?op=delete&id=";
str = str+ ds.Tables[0].Rows[i].ItemArray[0] + "\"title=\"delete\">Delete</a>";}
This worked perfectly until I found out that I need to do a user control. Now I don't know if I can reload the control in a similar manner.
I hoped I expained my problem good enough
Tnx for any help
|