Core ASP.NET Card, Get it Free
May 4, 2009 2 Comments
Core ASP.NET: This Refcard summarizes the most commonly used core functions and controls in ASP.NET
Try it! Its free but requires registration.
{ a .net developer’s blog; }
May 4, 2009 2 Comments
Core ASP.NET: This Refcard summarizes the most commonly used core functions and controls in ASP.NET
Try it! Its free but requires registration.
April 27, 2009 Leave a comment
While working on DNN 5.0 site, I was trying to have a left menu navigation using AJAX Accordion. Even, I got succeeded in implementing that but i come accross an issue of – flickering the Accordion control in IE while opening and closing and navigating thru panes.
After googling, I came to know about the solution and applied which worked successfully.
Frist is, Turn off FadeTransitions Property, i mean set it to “False”,
yes, its the cute effect everybody want to have while using accordion with. But, while I set it to false and removed the TransitionDuration property – The problem of flickering issue got solved. So, everybody speak with me – “I dont want FadeTransition effect
in DNN with Accordion!”.
March 16, 2009 Leave a comment
While working on DNN 5.0 site, I was trying to have a left menu navigation using AJAX Accordion. Even, I got succeeded in implementing that but i come accross an issue of – flickering the Accordion control in IE while opening and closing and navigating thru panes.
After googling, I came to know about the solution and applied which worked successfully.
Frist is, Turn off FadeTransitions Property, i mean set it to “False”,
yes, its the cute effect everybody want to have while using accordion with. But, while I set it to false and removed the TransitionDuration property – The problem of flickering issue got solved. So, everybody speak with me – “I dont want FadeTransition effect
in DNN with Accordion!”.
September 5, 2008 Leave a comment
The Scenario may come where application needs data to be updated automatically. The Question comes; Is there a way by which we can auto refresh a page for specific time interval so as to update the Content(automatically).
The ultimate goal is; we want to refresh our page automatically at a defined time interval. First, if you are using AJAX in your website then you can use AJAX Timer Control to achieve this. But if you are not using AJAX; then also its not a big deal.
Check out below code which will Referesh the webpage after every 10 seconds:
June 30, 2008 Leave a comment
Recently I tried AutoComplete extender (AJAX toolkit) in one of my on going web application. What I suppose to do is, user shall be able to get the AutoSense list of available products from database on typing the name of the product in a TextBox. When user types some letters in the Textbox, a popup panel will come to action and displayed the related words. So that the user can choose exact word from the popup panel. BTW, Ajax extension and Ajax Tool Kit should already be installed to implement any AJAX extenders. Here are the steps how to accomplish an AutoComplete TextBox from Database.. Read More…