Add a blog post

home » blogs

Communifire Blogs

CodeAsp.Net"s <strong>ASP.NET Blogs</strong> is more than just a social community for ASP.NET bloggers - we are one of the largest ASP.NET blog directories on the internet. Whether you are looking to search ASP.NET blogs, connect with ASP.NET bloggers, learn more about ASP.NET, or promote your own blog, CodeAsp.Net is for you. Be sure to check back often as we add new ASP.NET blog postings frequently.

Blogs RSS Feed

ASP.NET Blogs: Most Recent postings

Fetching Data from Database and Populating fields in the Form using LINQ to SQL

3/11/2010 7:34:50 AM by Vinz   -   0 Comments   -   Views: 8

In my previous example I have demonstrated how to create a simple form that would allow users to insert data to the database using L2S. In this example I’m going to demonstrate how to fetch and filter data from database and fill the fields in the form using L2S.  This example is basically a continuation of my previous example here . So I would suggest you to take a look at my previous example first before you proceed reading this example. Continue...

Read More

Inserting Data to Database using LINQ to SQL

3/11/2010 7:33:54 AM by Vinz   -   0 Comments   -   Views: 13

Few months ago, I’ve created a simple demo about “Creating a Simple Registration Form using the ADO.NET way ”. In this article, I'm going to demonstrate how to create a simple form that would allows users to insert data to the database using L2S.   As an overview, LINQ to SQL is a technology that allow you to query sql server. LINQ to SQL is an O/RM (object relational mapping) implementation that ships in the .NET Framework "Orcas" release, and which allows you to model a relatio...

Read More

Learning ASP.NET: Where to Begin?

3/1/2010 7:53:23 AM by Vinz   -   1 Comments   -   Views: 62

I often see questions at forums(http://forums.asp.net ) asking stuffs like: Where to begin? Where Do I start? How to Get Started? So I deciced to write this "boring " post to express my opinion and hopefully this can help beginners find their way to get started with ASP.NET. Based on my experience learning ASP.NET is just like learning how to play a guitar.. (oh really? why could I say that? ).(1) First you must have this what we called "interest " because if you d...

Read More

Pluralsight On-Demand Training library

3/1/2010 7:51:19 AM by Vinz   -   0 Comments   -   Views: 37

Pluralsight is an online .NET Training library which provides online training materials for .NET developers. Example trainings available on demand: ·  .NET 3.5 ·  Agile Team Practices ·  ASP.NET 3.5 ·  ASP.NET AJAX ·  ASP.NET MVC ·  BizTalk 2006 ·  BizTalk Server 2006 R2    ·  BizTalk Server 2009 ·  iPhone ASP.NET ·  LINQ ·  Managed Services Engine ·  Silverlight 3 ·  SharePoint Services ·  SQL Server 2008    ·  VSTS ·  WCF ·  Windows Server AppFabric, formerly "Dubli...

Read More

NEW DATA TYPES IN SQL SERVER 2008

2/17/2010 4:45:44 AM by yrbyogi   -   0 Comments   -   Views: 83

• Date and Time: Four new date and time data types have been added, making working with time much easier than it ever has in the past. They include: DATE, TIME, DATETIME2, and DATETIMEOFFSET. • Spatial: Two new spatial data types have been added--GEOMETRY and GEOGRAPHY-- which you can use to natively store  and manipulate location-based information, such as Global Positioning System (GPS) data. • HIERARCHYID: The HIERARCHYID data type is used to enable database applications to m...

Read More

Alert Box From ASPX Code-Behind Code

1/20/2010 11:46:58 AM by mohit   -   3 Comments   -   Views: 349

In this blog I will explain how to open a JavaScript alert from Code-behind file.I want to show ‘Welcome’ alert on page load. Below is my code:-protected void Page_Load(object sender, EventArgs e) { Response.Write("<script>alert('Welcome')</script>"); }   Happy Coding:)

Read More

DataTable in ASP.NET

1/14/2010 1:57:10 PM by mohit   -   0 Comments   -   Views: 561

In this blog I will explain how to create DataTable. here is my code:- creating Table first- private DataTable myTestTable() { DataTable myTable = new DataTable(); DataColumn myColumn; myColumn = new DataColumn(); myColumn.DataType = Type.GetType("System.String"); myColumn.ColumnName = "Name"; myTable.Columns.Add(myColumn); myColumn = new DataColumn(); myColumn.DataType = Type.GetType("System.String"); myColumn.ColumnName = "FatherName"; myTable.Columns.Add(myColumn); ...

Read More

FAQ: Cross Browser GridView Fix Header and Footer with ASP.NET Ajax

1/6/2010 11:42:00 PM by Vinz   -   1 Comments   -   Views: 367

Many developers from the forums (forums.asp.net ) are asking if how to implement fix header in GridView while scrolling. We all know that there are lots of examples out there that provide a solution that are available, however some of the solutions provided are not cross browser compatible. While searching for a cross browser solution, I found this article at devarchive.net and it seems very interesting to me. So I play around with the extender provided by devarchive team and thought wha...

Read More

Rank 3rd at the ASP.NET Community Hall of Fame

1/6/2010 11:39:34 PM by Vinz   -   2 Comments   -   Views: 290

Wheew..looks like i've been so busy lately.. ;)... I never thought I’d achieve this, but I’ve somehow managed to get to the top 3 rank in ASP.NET Community Hall of Fame ..This has been a very rewarding experience [~at least for me :) ]!Honestly, I really can't believe that I have helped hundreds, not only hundreds but I think thousands of geeks already within 2 years of contrinuting through forums at the official Microsoft ASP.NET site.

Read More

Solving Einstein riddle in sql

12/31/2009 11:54:54 AM by ramireddyindia   -   1 Comments   -   Views: 484

Today Morning one of my Colleague gave me this puzzle.... ALBERT EINSTEIN'S RIDDLEARE YOU IN THE TOP 2% OF INTELLIGENT PEOPLE IN THE WORLD?SOLVE THE RIDDLE AND FIND OUT.There are no tricks, just pure logic, so good luck and don't give up.1. In a street there are five houses, painted five different colors.2. In each house lives a person of different nationality3. These five homeowners each drink a different kind of beverage, smoke different brand of cigar and keep a different pet.THE QUESTION: WH...

Read More

Join CodeAsp.Net for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address: