Wednesday, March 21, 2012

jquery validation

http://www.position-relative.net/creation/formValidator/demoValidators.html

Thursday, March 15, 2012

Saturday, March 10, 2012

validation control not working after OnClientClick added to button click event

actuallly i have to validate checkbox terms and conditions before submitting the form and to validate forms there is already server side validation controls are used. As there is validation controls not work on checkbox thats why i have written a javascript function to validate that checkbox but when i added the OnClientClick on that button , i checked that term and condition working perfectly but validation controls are not validating the forms. if i remove the onClientClick its works perfectly . finally with help of http://stackoverflow.com . i found the solution i have to explicitly call the validate function of server side validation controls and now my button html look like this :

OnClientClick="Page_ClientValidate(); IsChecked();" />

Thursday, March 8, 2012

Apache or IIS Service not started when skype is running ?


as i am asp.net developer but these days i am also learning the PHP thats why i have downloaded the xampp and started its services .mysql service started perfectly but in case of apache its service not started because port 80 is busy with another service. i know that IIS is also using the port 80 but in my machine i never install the IIS so which app is using the port 80 ?

and after searching on google i find that SKYPE is using port 80


so i need to change the skype port which can be easily done by help of this pic






thanks to stackoverflow and google

ASP.NET Core

 Certainly! Here are 10 advanced .NET Core interview questions covering various topics: 1. **ASP.NET Core Middleware Pipeline**: Explain the...