ASP.NET Articles (487) - Page 33

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

487 records found.
 
Amitgupta007_99
ASP.net redirection 
Last updated on: 23 Jul 2007 11:10:40 PM by Amitgupta007_99 | Views: 7075 | Category: ASP.NET |
The easiest way to make a redirection in ASP.NET is using Response.Redirect(url). What it actually does is, that it creates a response with the "302 (Object Moved)" status code and the target destination. It tells the browser that the requested page is temporarily moved to a new location and then the browser makes a request to the new destination. If the page is permanently moved, then the 302 status code is no longer correct. Search engines also looks at 301 and 302 redirects differently. Here's a quote from The Internet Digest: There is no natural way of doing a 301 redirect in ASP.NET, so you have to set the HTTP headers manually. Below given is a small method that illustrates how to do it. All you have to do is to call it from the Page_Load or preferably from Page_Init or in ASP.NET 2.0 Page_PreInit.
Chinnu21
sending email using system.net.mail 
Last updated on: 20 Jul 2007 04:49:56 AM by Chinnu21 | Views: 15857 | Category: ASP.NET |
Below is a C# and VB.NET class that demonstrates using System.Net.Mail to send an email.
Deysomnath
Resizable GridView Column 
Last updated on: 12 Jul 2007 02:45:48 AM by Deysomnath | Views: 30422 | Category: ASP.NET |
This article will help us to implement resizable gridview column There's four important points to remember about it all. 1.Based on how the code is written, the Grid that has resizable columns must be contained in some other element (in these examples I use a DIV) and that element must have a style set of "position: absolute;". You need this to size the black vertical bar that attaches to the mouse correctly when performing an actual resize. 2.Based on how the code is written, you can only perform resize operations on table header cells (TH tags). This simply feels like the right way to do it - you could make it TD tags instead, and be able resize the column for the entire height of the table if you wanted to. 3.The actual table must have a style set of "table-layout: fixed;" If you don't set this style, strange things happen (try it and see, it goes all loopy when you resize . 4.To save having to remember to put too many requirements in the implementation, the black ve ...
Animesh
Avoiding dropdown appearing over div 
Last updated on: 05 Jul 2007 10:57:23 PM by Animesh | Views: 6910 | Category: ASP.NET |
Hi all i am sure many of us has faced problem of dropdown comming above the div here is a small solution for this May be you can try this it really works.....
Animesh
Value based sorting on key value collection 
Last updated on: 27 Jun 2007 01:33:39 AM by Animesh | Views: 10335 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
Guys has anybody faced problems with the Key, value pair collections not sorting the collections based on values . As all the collections sort themself on keys . As i needed a collection of Key,Value pairs which does sorting on values rather than key, For that reason i have created my own collection class which dose sorting on the values. And this is working perfectly for me .
Raja
Dynamically writing Meta tags on Master page from a User Control or any other class file 
Last updated on: 27 Nov 2007 01:37:25 PM by Raja | Views: 14198 | Category: ASP.NET |
While developing web sites, you must have came across situations where you need to write Meta tags from the user control or any class files. At first look it seems very difficult but I think it is not that much.
Raja
How to implement Remoting in ASP.NET 
Last updated on: 27 Nov 2007 01:35:10 PM by Raja | Views: 19637 | Category: ASP.NET |
.NET Remoting provides a way for application in different machines/domains to communicate with each other. To make an object remotable that should be inherited by MarshalByRefObject.