May 2006 Entries
I am wondering is there any library or component that just generate JS script for the .NET code that are related to UI of a particular page. I guess, it sounds like a very bad explanation. Let me put an example, If you have a code like below in your CS file, DropDownList _ddl = this.Page.FindControl("Drop... _ddl.Visible = false; Now the JS script can produced for the above .NET piece as like below, var _ddl = document.getElementById("Dr... _ddl.style.display = 'none'; I am thinking...
I had little time to peek into WebParts introduced in Whidbhey. It is awesome. Lets talk little bit about this framework. The reason behind the WebParts framework is that you can build your website with more personalization in easy way. To be precise, an WebPart can drag-drop anywhere in the page and the elements in the WebPart can be added or removed by the user. It means, the user can customize the page for himself, and all you get without writing any complicated JS scripts or CSS.The entire ASP.NET...
When you are developing some webservices may be for Ajax implementation in your website this post would help you in any case. For instance, you want to have a method which is exposed as a WebMethod to the user. This method uses some class or initializes some other classes object you may find an error that tells you that you're missing something to include.The possible solution is you have [System.Xml.Serialization.X... permit the WebMethod to allow to access the FooClass...