Showing posts with label Beginners. Show all posts
Showing posts with label Beginners. Show all posts

Sunday, December 15, 2013

Jquery datepicker prevent from selecting future date in Asp.Net

Hello Friends, Today I am writing this post for developer who face problem to disable future date using Jquery datepicker in asp.net. First of all you have to use "jquery-1.7.1.min.js","Jquery-ui.min.js" and "jquery-ui.css that can be dowload it form  http://jqueryui.com/download/all/ and add in your page.  For add datepicker add below code inside tag.         $(document).ready(function () {             var d = new Date();            var curr_year = d.getFullYear(); ...


Monday, August 26, 2013

Create Connection String in Asp.net using web.config file

Hello Friends, Today I am writing this post because of I found out that beginners got a problem to create connection with database in web config file in asp.net. So, Solution is here. Enjoy it..... Web Config File <configuration>   <connectionStrings>     <add name="nameofConnection" connectionString="Data Source=servername; Initial Catalog=DatabaseName; User ID=UserName; Password=Password;"/>   </connectionStrings>   <system.web>     <compilation debug="false" targetFramework="4.0"...


Friday, August 23, 2013

Object Oriented Programming (Oops) Concepts

Hello Friends, Today I am writing this post because of this is very important question in interview . And Before starting programming you should be about the concepts of Oops. What is OOP?  The object oriented programming is commonly known as OOP. Most of the languages are developed using OOP concept. Object-oriented programming (OOP) is a programming concept that uses "objects" to develop a system. A programming object has an ability to perform actions and has attributes. It performs just like real world entities for e.g. a motor bike. A bike performs actions such...


Thursday, August 22, 2013

Debug Editor Shortcut Keys in Visual Studio

Hello Friends, Today I am writing this post because of debugging is very critical part of developing and using debugging best shortcut we can do debug faster and smoother, So lets use it next time in your project. Use the following key combinations while you are debugging your project. Note:  You can change or create keyboard shortcuts in Keyboard of the Environment options in the Options dialog box. 1.             Display documentation for the active window .... F1 2.            Display a system menu...


Difference between Stored Procedure and Function In Sql

Hello Friends, Today I am writing this post because of this is very important question in interview  Inside procedure we can use DML (Insert /Update/Delete) statements, But Inside function we can not use DML statements. Procedure can have both input\output parameters,  But Function can have only input parameter. We can use Try-Catch Block in Stored Procedure, But In Function We can not use Try-Catch block. We can not use Stored Procedure in Select statement, But In Function We can use in Select statement. Stored Procedure can return 0 or n values (max 1024), But Function...