|
All Blog Posts
-
|
There are two ways of handling unhandled exception: 1) Get notified when unhandled exception occurs. Process (Log, write to event log, Send mail etc) the exception and allow the application to exit (crash) by using : Use AppDomain.UnhandledException Event...
|
-
|
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...
|
-
|
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...
|
-
|
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...
|
-
|
.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...
|
-
-
|
This Christmas, some sites are giving away licenced software for free. As this is a blog dedicated to .NET, I have provided the details in my blog . Please grab this software now, as it is a limited time offer .
|
-
|
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...
|
-
|
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 >
|
-
|
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...
|
-
|
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...
|
-
|
This is to invite you to attend a 3 hour Virtual ILT on 28-Oct-2009 between 10:00am to 01:00pm. The theme of this training is focused towards building and publishing applications for the cloud on the Windows Azure Platform.
|
-
|
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...
|
-
|
Xperience2009 by B.NET & BITPRO Sponsored by Microsoft Limited Tickets available! Register early! Dev Track - 24 th October 2009 Time Topics Speakers From To 08.30AM 09.00AM Registration & Welcome UG Leads 09.00AM 10.00AM Build Powerful Web Applications...
|
-
More Posts Next page »
|
|
|