Showing posts with label All. Show all posts
Showing posts with label All. Show all posts

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....


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....


Difference between Asp.Net MVC 3 and MVC 4

Hello Friends, Today I am writing this post because of this is very important question in interview as well as you should know the difference between MVC3 and MVC4. So let enjoy this.                                    MVC ASP.NET MVC  is a framework for building scalable, standards-based web applications using well-established design patterns and the power of ASP.NET and the .NET Framework. BEST/NEW FEATURES...


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"...