How do i create an object of partial class in user control
C#
2
Posts
2
Posters
1
Views
1
Watching
-
i am creating an asp.net application in which i have UploadImage.aspx page and user control how would i create an object of Partial class UploadImage.cs in usercontrol.cs Thanks for any help you might be able to provide with this problem, :)
-
i am creating an asp.net application in which i have UploadImage.aspx page and user control how would i create an object of Partial class UploadImage.cs in usercontrol.cs Thanks for any help you might be able to provide with this problem, :)
Hi Write the below in usercontrol UploadImage objname = new UploadImage() Regards Naina
Naina