C# · MMC · WM_CLOSE

Prompt for Save changes in MMC 3.0 Application (C#)

Microsoft Management Console 3.0 is a managed platform to write and host application inside the standard Windows configuration console. It provides a simple, consistent and integrated management user interface and administrative console. In one of the product I am currently working with uses this MMC SDK. We used it to develop the configuration panel of… Continue reading Prompt for Save changes in MMC 3.0 Application (C#)

Ajax · Asp.net mvc · Autocomplete · dynamic · jQuery

jQuery Autocomplete inside partially rendered user control?

Yesterday a very small issue put me into the hell for almost an hour. Finally I was able to figure out a workaround for me.I am not claiming this is the best approach to solve this problem or stuff like that, but definitely it worked for me nice, and I did not find any downside… Continue reading jQuery Autocomplete inside partially rendered user control?

Uncategorized

Posting client side data to server side in ASP.NET AJAX

Often we need to bring some client side data (e.g. javascript variable's value) into the server side for processing. Doing this usually done using hidden fields- registering hidden fields from server and modifying the values at client side using javascript and finally bringing back the modified value to the server along with a post back.… Continue reading Posting client side data to server side in ASP.NET AJAX