icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 31 January 2014

Basics of LINQ Join with Lamda Expressions(Inner Join with Linq)...................

Basics of LINQ Join with Lamda Expressions(Inner Join with Linq)................... Note: In this topic, we will discuss about join with Linq Concept ………. --Execute this query in Sql Server………………………… create database LinqwithJoin use LinqwithJoin --Code for Create table create table StuRecord (id int,Name nvarchar(50),City nvarchar(50)) create table StuCollege(id int,CollegeName nvarchar(50),BranchName nvarchar(50)) -- insert record...

Thursday, 23 January 2014

How to preview image in asp net with Jquery

How to preview image in asp net with Jquery Note :  we will discuss how  to  use preview image concept with jquery in Asp.net in this topic .First we will take a Website with Default2.aspx page and download jquery-1.10.2.min.js  from www.Jquery.com follow as below code <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...