Lohith B N
" The road ahead "
Sign in
|
Join
|
Help
Home
About
RSS
Atom
Comments RSS
Search
Tags
.Net
.Net 3.5
Ajax
Asp.net 2.0
Asp.net 3.5
asp.net 4.0
asp.net ajax
C#
interview
LINQ
Microsoft
Regular expression
share point
Smart Clients
VB.Net
WCF
Web service
Windows forms
WPF
XML
Navigation
Home
Blogs
Forums
Photos
Downloads
Archives
April 2010 (1)
March 2010 (1)
February 2010 (1)
January 2010 (1)
December 2009 (5)
November 2009 (2)
October 2009 (3)
September 2009 (2)
August 2009 (16)
July 2009 (5)
May 2009 (1)
February 2009 (1)
January 2009 (2)
December 2008 (1)
November 2008 (2)
October 2008 (1)
September 2008 (2)
August 2008 (3)
July 2008 (4)
June 2008 (3)
May 2008 (8)
April 2008 (1)
February 2008 (1)
January 2008 (4)
December 2007 (21)
Browse by Tags
All Tags
»
Asp.net 3.5
(
RSS
)
.Net
.Net 3.5
Ajax
Asp.net 2.0
asp.net ajax
C#
LINQ
Microsoft
Smart Clients
VB.Net
WCF
Windows forms
WCF : Adding BehaviorExtensionElement for custome behaviors
by
lohith
Whele you add a BehaviorExtensionElement to add custom behavior if you get error message like below "Verify that the extension is registered int he extension collection at system.serviceModel/Extensions/BehaviorExtensions" The code in the configuration...
Filed under:
Asp.net 3.5
,
WCF
Visual Studio 2008 video tutorials
by
lohith
http://asp.net/learn/3.5-videos/ LINQ Video Series Part 1: Introduction to LINQ and SQL Part 2: Defining our Data Model Classes Part 3: Querying our Database Part 4: Updating our Database Part 5: Binding UI using the ASP:LinqDataSource Control Part 6...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
Microsoft .NET data access application block version 2.0.
by
lohith
Are you involved in the design and development of data access code for .NET-based applications? Have you ever felt that you write the same data access code again and again? Have you wrapped data access code in helper functions that let you call a stored...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
WCF : A Developer's Introduction to Windows Communication Foundation 4
by
lohith
Find the below link for A Developer’s Introduction to Windows Communication Foundation (WCF4) in .NET 4 The .NET Framework 4 (.NET 4) comes with some compelling new features and welcomed improvements in the area of Windows Communication Foundation (WCF...
Filed under:
Asp.net 3.5
,
WCF
How do we sort the data in dataset
by
lohith
SqlConnection cn = new SqlConnection(ConnectionString); cn.Open(); SqlDataAdapter da=new SqlDataAdapter("select emp_id, fname, lname from employee",cn); DataSet ds=new DataSet(); da.Fill(ds); DataView dtView = ds.Tables[0].DefaultView; dtView...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
.NET Framework 3.5 New Features
by
lohith
.NET Framework 3.5 New Features Faster .NET Framework execution 1. Faster garbage collection 2. Smarter, faster NGen requiring smaller working set RAM 3. 64 bit client improvements 4. ThreadPool performance improvements 5. Security check caching during...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
Namespace Chart in .Net 3.5
by
lohith
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
ASP.NET AJAX Virtual Labs
by
lohith
ASP.NET AJAX: Part 1 – The UpdatePanel Control In this exercise, you’ll open an existing Web site—one based on the real Burton Snowboards Web site at www.burton.com— in Visual Studio and take a few moments to familiarize yourself with it. You’ll also...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Ajax
Disable Cut, Copy & Paste in ASP.Net textbox
by
lohith
You can disable cut, copy & paste in ASP.Net textbox, here is how you can disable the cut, copy, paste. < asp:TextBox ID =”TextBox1″ runat =”server” oncopy =”return false” onpaste =”return false” oncut =”return false” > </ asp:TextBox >
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
Get asp.net client information
by
lohith
I have a situation where i need to know about the user like IP Adress, host name etc and have to log the same user information in your database for further use. There are many resorces you can find on the internet to get to know about asp.net clinet information...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
Bind Textbox with DataSet
by
lohith
Here in this post i m going to show how to bind textboxes with dataset. SqlConnection Conn = new SqlConnection(); SqlDataAdapter adpt; DataSet ds = new DataSet(); String str = "select * from TableName; adpt = new SqlDataAdapter(str, Conn); adpt.Fill...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
Add DataRow[ ] to new cloned DataTable
by
lohith
I have situation where I want to fill the selected data from a DataRow[ ] to a new cloned DataTable. Here is the code to do so... System.Data. DataSet taskDS; string taskList; string expression; char [] separator = new char [] { ',' }; string...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
MSDN Magazine September 2009 Issue
by
lohith
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
,
Microsoft
,
asp.net ajax
Default Parameters in web.config file
by
lohith
I would like to specify some defaullts for my logic and i was not sure where to put them finally got a solution to put them in web.config file. Of course I can hardcode it but it is not very elegant. <appSettings> <add key="DefaultParameter1"...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
Get header information of a website
by
lohith
protected void btnGetInfo_Click( object sender, EventArgs e) { try { WebClient webClient = new WebClient (); byte [] getResponse = webClient .DownloadData( "http://" + txtWebSiteAddress.Text); WebHeaderCollection webHeaderCollection = webClient...
Filed under:
Asp.net 2.0
,
Asp.net 3.5
,
C#
,
VB.Net
More Posts
Next page »