Creating your own web controls

Well this is a newbie question, but I think a lot of people have problems with this.

I am developing windows / web app for fun and installing them in friends places. Most of my development concentrates on the CRM system, but I have a big problem with displaying data from the database better, more efficiently and easier.

Using Microsoft's built-in web controls is a good and easy way, but it doesn't meet my needs, and worse, it's not as efficient as other web controls in great software and websites (Google (lol) ).

I want to create my own controls (GridView, etc.). So my question is, how can I do this myself?

How does Microsoft create its web controls for web and Windows Form development?

Thank!

Amit

+2


source to share


2 answers


Here's a starting place to learn how to create your own web controls.

http://msdn.microsoft.com/en-us/library/bb386565.aspx

And here's an older link, but probably a better place to start.



http://msdn.microsoft.com/en-us/library/aa710843(VS.71).aspx

Finally ... if you want to design custom controls for Windows Forms applications ...

http://msdn.microsoft.com/en-us/library/6hws6h2t.aspx

+4


source


Well, there are several ways to answer that. Most of the nice controls do a lot of Javascript, which isn't obvious if you don't look at the output. You may be interested in using jQuery plugins (or "controls"). Also, to be honest, you might be interested in looking at a new way to do ASP.NET called ASP.NET MVC. It is a very good way to create web applications that use many web standards technologies without hiding or hiding the details. Here is a link to it:



http://www.asp.net/mvc/

+4


source







All Articles