Archive for July, 2009

 

Installing Driver for Legacy Network Adapter on Win2k3 x64 VPC (Hyper-V)

 
Overview I installed a 64-bit Windows 2003 R2 Enterprise SP2 on one of my Hyper-V VPC, and add a Legacy Network Adaptor to it. However the network adapter is not automatically installed in the x64 win 2k3 because its driver is not available. With some Googling I found that 64-bit version of win [...]

Continue reading

 
 

ASP.NET User Control – Part 1

 
Overview User Control is quite useful in creating a customized control which can be reused throughout pages. Instead of creating a custom server control, developers can create user control which (in my opinion) is easier to create and modify the control layout. In this part, I will talk about how to create a [...]

Continue reading

 
 

Client side validation skipped if submit Button have "onClientClick" JavaScript function

 
Overview I have a form using ASP.NET validation controls, I have been using these ASP.NET validators for quite a time and they behaved well. However the problem come when I added a "onClientClick" event handler to the form submit button, and then the validation is just skipped and the form post back every time. [...]

Continue reading