|
|
Browse by Tags
All Tags » ASP.NET » C#
Showing page 1 of 5 (45 total posts)
-
ILOG Diagram for .NET is a comprehensive set of tools, components and libraries for creating graphical editing, visualization, supervision and monitoring tools for the .NET platform. ILOG Diagram for .NET targets Windows Forms, ASP.NET, and WPF.
Take a look at http://www.ilog.com/products/diagramnet/ for details.
-
I was recently asked how to call WCF Service asynchronously from ASP.NET. Here's my sample code:
1) WCF Service Library Implementationnamespace WcfServiceLibrary1
{
[ServiceContract]
public interface ISampleService
{
[OperationContract]
string SayHelloWorld();
}
}
namespace ...
-
Welcher ASP Entwickler kennt den Fehler nicht? Der Grund liegt an einem speziellen Caching das nur der Firefox anwendet.
Mehr zu dem Thema gibt's hier: http://developer.mozilla.org/en/Using_Firefox_1.5_caching
Die Lösung gibt's allerdings hier:
Response.Cache.SetNoStore();
Am besten im Page_PreInit anwenden!
-
Your professional profile indicates you may have experience or know someone with experience relevant to the following position. I was hoping you might be interested or be willing to forward this email to an associate who could benefit from this ...
-
i am working with large video upload . for this i use splits the video into blocks(10 MB) and upload it using offset value. more over i have to show the progress
but i couldn't show the progress while the upload in progress. once the upload is over ,then status message appears.what is solution for this?
-
Diese Frage stellt sich wohl jeder wenn man Linq-to-SQL in einer Web-Anwendung verwenden möchte. Microsoft sagt dazu folgendes: "A DataContext shoud be use per unit of work". Das heißt soviel wie, man sollte einen DataContext instanzieren für jede Arbeitseinheit die Anfällt, ich denke mal damit ist jeder ...
-
Hier mal in Stichworten ein paar Grundsätze die man beim Entwicklen beachten sollte, wenn Laufzeit-Performance eine Rolle spielt:C# Performance Optimierungen: Lieber wenig große wie viel kleine Assemblys„sealed“-Klassen wann immer möglich bei geerbten Typen mit vielen virtuellen Funktionen. Die virtuellen aufrufe werden ...
-
Earlier today I posted about a Recursive Find Control Extension Method. I was informed recently by Steve Smith that I should check out the generic find control method which Aaron Robson has on his blog. He has some pretty nice methods there, so I just adapted them to be extension methods now. As extension methods the code looks like this. ...
-
So one of the most useful methods for ASP.NET development that never seems to be included in ASP.NET is a recursive find control method. This problem results from the standard FindControl method on controls only searching within that control. It only finds child controls not grandchildren or anything farther down the line. This means that anything ...
-
Al Pascual wrote about some trends he noticed using Google Trend, with regard to different programming languages. It's an interesting tool, since it can be used to gauge general interest in particular keywords and search terms, as well as news, going back about 4 years. For instance, here's a comparison of Visual Basic and C# using ...
1
|
|
|