Browse by Tags
All Tags »
.Net (RSS)
When you have an assembly, that is not signed, and you need to sign it you will need to run the following commands: MSIL Disassembler (Ildasm.exe)- http://msdn.microsoft.com/en-us/library/f7dy01k1(VS.80).aspx MSIL Assembler (Ilasm.exe) - http://msdn.microsoft.com/en-us/library/496e4ekx(VS.80).aspx
Read More...
Next week i'll be @ TechEd EMEA 2008 Developers in Barcelona with my colleague João Martins aka "Jota". I hope it will be a very interesting week, Pedro Rosa from Microsoft Portugal is the owner of the dev track, and has very good
Read More...
Scott Woodgate and team - Announcing Windows Workflow Foundation At the PDC Microsoft announced Windows Workflow Foundation . Here Scott Woodgate and team (Abhay Parasnis and Paul Andrew) demonstrate the power of the new Workflow Foundation. It's all
Read More...
private byte [] GenerateThumbNail( byte [] foto){ System.IO.MemoryStream memStream = new System.IO.MemoryStream(foto); int thumbWidth = 88; int thumbHeight = 100; if (QueryStringHelper.ItemType == "detail"){ thumbWidth = 250; thumbHeight = 250; } System.Drawing.Image
Read More...
MailMessage msg = new MailMessage(); msg.From = ConfigurationSettings.AppSettings["From"].ToString(); msg.Subject = subject; msg.To = messageTo; msg.Fields[" http://schemas.microsoft.com/cdo/configuration/smtpserver "] = Settings.SmtpServer; msg.Fields["
Read More...
/// /// Mads Haugbø Nissen 2003(c) /// Objectware AS /// Norway /// /// http://weblogs.asp.net/mnissen /// /// The QueryStringPageViewer provides the same functionality as the regular PageViewerWebPart /// but allows providing a selection of querystring
Read More...
SharePoint toolsuites Coras workplace suite Suite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...) Syntergy Provide lots of modules such as replication technologies for SharePoint,
Read More...
Example 1 . Running a command line application, without concern for the results: private void Run(){ System.Diagnostics.Process.Start(@"C:\runFile.bat"); } Example 2 . Retrieving the results and waiting until the process stops (running the process synchronously):
Read More...
Serializar um Objecto para String (XML) StringWriter sw = new StringWriter(); XmlSerializer serializer = new XmlSerializer( typeof ( OBJECT )); serializer.Serialize(sw, getAcessoryEquipmentsRequest.SearchCriteria); strXML = sw.ToString(); Deserializar
Read More...
Design Principles for AJAX Applications Minimise traffic between browser and server so that the user feels the application is responsive. Be clear on the interaction mode being used - regular HTML versus AJAX versus desktop application so that the user
Read More...
Asynchronous JavaScript with XmlHttpRequest - C# Example Download the latest Ajax.dll (5.5.13.1) to use it for free in your web projects. To learn more about AJAX , visit: Wikipedia A New Approach to Web Applications To download this C# example click
Read More...