Thursday, February 5, 2015

What is AJAX Helpers in ASP.NET MVC

Ajax helper in ASP.NET MVC essentially provides Ajax functionality for your web applications. AJAX Helpers are used for creating AJAX enabled elements for example Ajax enabled forms and links which performs request asynchronously. when you use Ajax helper you can submit your HTML form using Ajax so that instead of refreshing the full web page only a part of it can be refreshed. you can render action links that allow you invoking action methods using Ajax. Basically AJAX Helpers are extension methods of AJAX Helper class which exists in System.Web.Mvc.Ajax namespace. AJAX-enabled link based...


Monday, February 2, 2015

Personal and Technical Interview Question for Fresher

Today, I am sharing interview question which I have faced during interview at fresher time. I have combined all round interview question which had asked to me in one group. I hope it will help to fresher.  First Interview [HCL] 1. Tell about your technical profile. 2. What was your role in your project? 3. In which module you have worked explain? 4. Describe GridView events (Paper). 5. How to change Label's color based on Label's value  (Paper)? 6. Write the code to perform edit and delete operations using  GridView (Paper). 7. What are the Validation controls in ASP.Net? 8....


Sunday, February 1, 2015

Brief Introduction of Linq

Today I am going to explain a very good topic....Linq. So, First question is What is Linq. Linq is basically stand for Language-Integrated Query. Basically LINQ address the current database development model in the context of Object Oriented Programming Model. If you wants to develop database application on .Net most of us prefer to use ADO.Net. ADO.Net is working as middle ware in application and give us complete object oriented wrapper around the database SQL. So Programmer must have good knowledge of object oriented programming concept as well as SQL to develop an application....


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(); ...


Tuesday, October 8, 2013

Quick Link For Download Visual Studio 2013 RC

...


Friday, September 13, 2013

Difference between Local Temp Table and Global Temp Table ?

What is the difference between Local Temp Table and Global Temp Table ? Temporary tables are temporary storage structures. You may use temporary tables to store data that you will manipulate before arriving at a final format.    Local Temp Table:  The hash (#) character (prefix with tablename) is used to declare a temporary table  as it is prepended to the table name. A single hash (#) specifies a local temporary table.  Local temporary tables are available to the current connection for the user, so they  disappear when the user disconnects. Within SQL Server, temporary tables are stored  in the Temporary Tables folder of the tempdb database. Syntax for creating Local Temp Table Create table #tempLocalTableName(EmpId int, EmpName varchar(50), EmpAdd varchar(100)) Global Temp Table: Global temporary tables may be created with double hashes (##) (Prefix with table name).  These are available to all users via all connections, and they are deleted only when all  connections are closed. Once created, these tables are used just like permanent tables;  they should be deleted when you are finished with them.  Syntax for creating Temp Table Create table ##tempGlobalTableName(EmpId int, EmpName varchar(50), EmpAdd varchar(100)) If...


Sunday, September 1, 2013

.Net Interviews Question For Beginners

Hello Friends, Today I am writing this post because of in Interviews I have faced so many question when I was beginners. So, I think I should share these question with you. Interview I 1. Tell about your technical profile. 2. What was your role in your project? 3. In which module you have worked explain? 4. Describe GridView events (Paper). 5. How to change Label's color based on Label's value  (Paper)? 6. Write the code to perform edit and delete operations using  GridView        (Paper). 7. What are the Validation controls in ASP.Net? 8....