feeds2read
Latest Flows from this sub-category:
Buy Accounting Software

Free Download SAP HR Books And Interview Questions

Anarchyjim

DRM Products and Solutions - PDF and Web Content Security Software

Stellar PhoenixAccess Recovery 3.0

Free Download SAP ABAP Books, Projects, Reports, FAQ’s

Custom Software Development

SAP ABAP Programming

4Team News: Sync2

MP3 Tags

random selection from this sub-category:
firefoXtensions, el blog de las extensiones para Firefox

Squidoo: Download Free DVD Movie – Free Unlimited DVD Movies Download

SyberWorks e-Learning Podcast

MP3 Tags

My Blog!

iRemotePC by Athivision Inc.

The PMO Podcast™

E-Commerce Website Development and SEO Company, Live Technical Support, Indian BPO Company for Outsourcing

Handphone Software

TestThis.com: Software Picks

Rss Directory > Computer > Software > Latest AspNetSource.com Blog's Articles


Articles for ASP.NET, C#, VB.NET, MS SQL, MS Access, Framework 2.0, 3.0, 3.5, etc.
 

We've received some mails form our visitors, they asked us why we need to collect their names and e-mails when they download our free products. We've really don't need users names and e-mails. That

Sometimes it's usefull when your someone clicks in your textbox, whole text inside it to become selected. We use it in 'Link to Us' textbox. Follows example how you can do it:

in aspx page:

The DataContext class is the core channel that you use to work with (for example,
to query or update) your database. For each LTS DBML file you add to your solution, a new
DataCon

While Internet Explorer for Windows 6 (IE6) and previous versions of IE don’t support PNGs’ alphatransparency
feature, all popular browsers — Safari, Opera, Firefox, and

If your site has visitors from all over the world, it may be a good idea to check if it can be accessed and loading time by the different location in the world,

I found that useful site: <

Connecting ASP.NET to a remote SQL Server or SQL Server Express database
is error-prone and frustrating. If you manage to connect the first time without
any grief, run out and buy

ASP.NET doesn’t serve (display) certain types of files to the browser, including
configuration files. However, don’t tempt fate by flashing a SQL Server
password in the

It's a good idea to add sitemap file to your site. Some hosting providers allow their customers tools for sitemap generation, but if your doesn't you can use this url to generate it (just by typing

Design patterns were introduced in Erich Gamma, Richard Helm, Ralph Johnson,
and John Vlissides’s seminal work Design Patterns: Elements of Reusable Object-
Oriented Software

Behaviors, controls, and components are mostly the same. This is the
case because when compared to the amount of functionality the base component
type provides, behaviors and cont

Prior to answering this question, you must first understand what LINQ is. LINQ stands for the
.NET Language Integrated Query and is a new framework extension in .NET 3.5. As the name

SQL Server has evolved over the years into the product it is today. The table below gives a summary of
this process.

Year<

You can associate different Master Pages dynamically with a content page. This is useful in
two situations.
First, you can enable the users of your website to customize the appear

Many web applications involve user
input. The sad fact is, however, that users make mistakes: they skip required fields,
they put in six-digit phone numbers, and they return all m

Some websites display a login form at the top of every page. That way, registered users can
log in at any time to view additional content. The easiest way to add a Login control to all

 

It's a good idea to check the load time of your site, I found that usefult free online tool:

You can check the downloaded size (in KB) of the page, Total Load Time and Averag

When started the site, there was something in the design that I didn't like, but I couldn't understand exactly what was the problem. So, I make 3 different tries to make the design better, but with

Additionaly to ASP.NET AJAX, many third-party AJAX libraries are available that can be used with ASP.NET. Some are mostly focused on providing JavaScript libraries for use from within the browser t

 

You use WYSIWYG editors in your web apps, don't you ?

I added into current site standard and popular WYSIWYG editor, it was cool as design but there was a problem - it really

We've just added a forum to our site: http://www.forums.aspnetsource.com/

If you're somehow related to asp.net and web - have some problems

In this article, we'll continue the series about Optimize Page Loading. Now we'll focus on optimizing when we work with pictures.

1. Use Browser Cache

When visit p

1. Use Only Five to Seven Main Categories

Five and seven are magic numbers in life because remembering a list of five
to seven things is easy. Any more than that a

Here's list of new features of C# language in Framework 3.0.

1. Implicitly Typed Local Variables

You can use implicitly-typed local variables to store anonymous t

Here's list of general tips to speed up the loading time of your pages.

1. Use Browser Cache

When visit page for first time, Browser have to download all resource

*This article is for visitors of the site, who are not familiar with asp.net

ASP.NET is a web application framework developed and marketed by Microsoft,

We all use asp.net validators (RequiredFieldValidator, CompareValidator, RangeValidator, RegularExpressionValidator, CustomValidator, ValidationSummary) and it's good to use them BUT they will not

I think that speed of loading of site is something very important. If you don't pay attention on site loading, it may cause many problem:

1) many people won't come back to the site (who can

Sometimes it's a good idea to highlight some text in the page. We use it when search to highlight the seaching words in the result(for presenting result we use GridView):

I faced with strange problem: In my asp.net app, I've master page and aspx page that inherits the masterpage.

In masterpage I've that code:

<title>SITE TITLE - <asp:Content

Let's look at this scenario:

We have site with folder:

SiteFolder
|-Admin // folder
|    |-page2.aspx; // page that inherits main.master

Unfortunately, method Guid.TryParse(string s, out Guid result) doesn't exist in .net, event in Framework 3.5 :(

But it's easy to write our method which tries to parse Guid:

Example

You can redirect to current page without even know page's name( ex. in ascx controls ).

in aspx or ascx page:

<a href='<%= Request.Url.AbsoluteUri %>'>

It's good to validate maximum length of a textbox's content. There're many ways for doing that. In our oppinion best way for doing that is with Regular Expression:

<asp:TextBox ID="

Sometimes it's good idea to use row numbering in GridView, we use it in http://www.aspnetsource.com/Articles.aspx:

something very cool thing in asp.net developing with Visual Studio is the debugger: in QuickWatch you can write everyting: variables, call functions to see result by them, ... everything, ... Well,

Using LINQ we'll faced with that scenarion:

in Db we've two table:

Parents(ID, parentText) and Childs(ID, ParentID, childText).

in aspx page we've GridView and LinqDataSou

Very often in our practicе we pass Guid as QueryString Parameter (ex. Default.aspx?someId=e2716920-0c21-4a46-8d19-f05b12f22c5b), this parameter can be parameter for LinqDataSource's where:

This article is for fun. When I opened msdm for VS 2008 and I read for LinqDataSource's EnableInsert Property I found that in examlpes:

 

Before user download a file from our asp.net app, we may want him to fill some form with information(ex. names, e-mail, etc.) and when press downlaod button the form should be hidden

We always use master pages in our asp.net work. Very often in mater page we put site navigation - menu. The menu is same for every page, but to make more clear which page is currently opened, we ca

In this Article, we'll make overview of new in .NET Framework 3.5:

LINQ (Language-Integrated Query) - makes more closer word of objects and word of datas. In LINQ queries a

In Framework 3.5 there's new Generic Class - HashSet<T>.

The HashSet<T> class provides a set of operations with high performances. All elements in HashSet<T> are different

It's very easy to load data from xml file and to present it in the way you want. We prefer to use that method for small data which rarely is being changed.

In the example below, we have xml

 

in aspx page(Frameworks: 2.0, 3.0, 3.5):

<asp:ImageButton ID="ImageButton1" ImageUrl="~/img.gif" runat="server" onclick="Ima

Using Find Method in Generic Controls With VB.NET - T List<T>.Find(<T> item)

When using VB.NET, and try to search for element in class List, there’s no

Using Find Method in Generic Controls With C# - T List<T>.Find(<T> item)

Well, it’s little strange to us that in class System.Collections.Generic.L

1. Introduction - What is Script injection ?
   Script injection attacks occur when a hacker fill one or more input fields with malicious programming code and t


© copyright feeds2read.net 2005-2008