I was wondering how could I develop web parts using the ASP.NET wysiwyg or the Design Mode.
I read a lot about how to create web parts and most of the tutorials say that I have to create a Visual C# project with Class Library as template.
Then, I have to inherit from WebPart and override methods.
The problem is that I don't understand why I would add my different controls in that C# file by typing them.
For example :
tbA = new TextBox();
btnX = new Button();
Wouldn't it be easier to use an .aspx file and add them in Design mode ?
Is it possible ? and can anyone point me to the right direction on how to do it
I know that using SmartPart with aspx file works, but I want to create my own WebParts.