Home Authors Posts by Raúl Ribeiro

Raúl Ribeiro

Raúl Ribeiro
0 POSTS 0 COMMENTS

ASP.NET Portal Framework

0
ASP.NET Portal FrameworkPersonalize Your Portal with User Controls and Custom Web PartsASP.NET 2.0 comes with a built-in portal framework that brings two significant benefits...

Converting Hexadecimal string to byte[]

0
string hexString = txtHex.Text; int discarded; txtByteCount.Text = ((int)HexEncoding.GetByteCount(hexString)).ToString(); txtLength.Text = hexString.Length.ToString(); byte byteArray = HexEncoding.GetBytes(hexString, out discarded);

Create ThumbNail from image byte[]

0
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...

Updating webparts in the GAC without using IISReset

0
Retirado de Michael ChristensenWhen deploying new versions of Webparts to the GAC, the general recommendation is to subsequentially run IISReset, since Sharepoint will not...

Generate INSERT scripts for any table

0
Retirado de : DotnetSpider        /*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------AUTHOR KARTHIKDESCRIPTION BUILDS THE INSERT QUERY FOR ANY GIVEN TABLE---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/CREATE PROCEDURE SP_GEN_INSERT_SQL  @TABLENAME VARCHAR ( 2000 )ASBEGINDECLARE CUR_METADATA CURSOR FORSELECT NAME...

Using Ajax.NET under SharePoint

0
Retirado de : Angus Logan I’m having a play with Ajax.NET because I have some somewhat unique requirements from an application which is delivered under...

Installing Templates on the Portal

0
  Retirado de : http://www.spsfaq.com/downloads/SPS_cheat_sheet_1.doc   For templates to available form the “Create Site” link in the Sites Directory, in other words, to create a top level...

using System.Web.Mail with authentication

0
MailMessage msg = new MailMessage(); msg.From = ConfigurationSettings.AppSettings.ToString();msg.Subject = subject;msg.To = messageTo;msg.Fields = Settings.SmtpServer;msg.Fields = Settings.SmtpServerPort.ToString(CultureInfo.InvariantCulture);msg.Fields = 2;msg.Fields = 1;msg.Fields = Settings.SmtpSendUserName;msg.Fields = Settings.SmtpSendPassword;SmtpMail.Send( msg );

QueryStringPageViewer WebPart for Sharepoint

0
    ///     /// Mads Haugbø Nissen 2003(c)    /// Objectware AS    /// Norway    ///     /// http://weblogs.asp.net/mnissen    ///     /// The QueryStringPageViewer provides the...

SharePoint Tools Galore List

0
  SharePoint toolsuites Coras workplace suiteSuite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...) Syntergy Provide lots of modules...