Controlling ActiveX in Internet Explorer
In today’s post, I’ll provide a high-level overview of features in Internet Explorer that impact the loading of ActiveX controls.
In today’s post, I’ll provide a high-level overview of features in Internet Explorer that impact the loading of ActiveX controls.
– February 15, 2011: What you should know about Version Control in TFS 2010 Abstract Unlike Visual SourceSafe (VSS), which relied on a file-based storage mechanism, Team Foundation version control stores all artefacts, as well as a record of all changes and current check-outs in a SQL Server database which makes it highly reliable and scalable.
Very excited to see another great partners solution for Project Server 2010: Nintex Workflow for Project Server 2010 (press release: http://www.businesswire.com/news/home/20101206005480/en/Nintex-Workflow-Project-Server-2010 ). In their own words: Nintex Workflow for Project Server 2010 offers a graphical, web-based, no-code designer that builds demand workflows that are assigned to Enterprise Project Types, improving team collaboration throughout the project review and approval processes.
1: using System; 2: using System.Runtime.InteropServices; 3: using System.Web.UI; 4: using System.Web.UI.WebControls; 5: using System.Web.UI.WebControls.WebParts; 6: using System.Xml.Serialization; 7: 8: using Microsoft.SharePoint; 9: using Microsoft.SharePoint.WebControls; 10: using Microsoft.SharePoint.WebPartPages; 11: using System.Xml; 12: using System.ComponentModel; 13: 14: namespace WebPart1 15: { 16: [Guid( "8517b24e-202c-4319-8960-303996a3fdb6" )] 17: public class WebPart1 : System.Web.UI.WebControls.WebParts.WebPart 18: { 19: public WebPart1() 20: { 21: this .ExportMode = WebPartExportMode.All; 22: } 23: 24: protected override void CreateChildControls() 25: { 26: base .CreateChildControls(); 27: 28: // TODO: add custom rendering code here. 29: // Label label = new Label(); 30: // label.Text = "Hello World"; 31: // this.Controls.Add(label); 32: } 33: 34: protected override void Render(HtmlTextWriter writer) 35: { 36: SPWeb web = SPContext.GetContext( this .Context).Web; 37: web.AllowUnsafeUpdates = true ; 38: SPUser user = web.CurrentUser; 39: SPWebPartCollection collection = web.GetWebPartCollection( "default.aspx" , Storage.Personal); 40: writer.Write(user.LoginName); 41: PageViewerWebPart lobjWebPArt = new PageViewerWebPart(); 42: //Change to the JSP URL or your web Application 43: lobjWebPArt.ContentLink = "http://www.microsoft.com?SID=" + user.LoginName.ToString() + "&VIEW=domain" ; 44: collection.Add(lobjWebPArt); 45: } 46: } 47: }
1: using (SPSite site = new SPSite( "http://ms10:200/sites/200" )) 2: { 3: using (SPWeb web = site.OpenWeb()) 4: { 5: SPList lib1 = (SPDocumentLibrary)web.Lists[ "Documents" ]; 6: SPList lib2 = (SPDocumentLibrary)web.Lists[ "Site Collection Documents" ]; 7: byte [] fileBytes = null ; 8: string destUrl = null ; 9: SPFile destFile = null ; 10: foreach (SPListItem item1 in lib1.Items) 11: { 12: fileBytes = item1.File.OpenBinary(); 13: destUrl = lib2.RootFolder.Url + "/" + item1.File.Name; 14: destFile = lib2.RootFolder.Files.Add(destUrl, fileBytes, true /*overwrite*/ ); 15: 16: fileBytes = null ; 17: destUrl = null ; 18: destFile = null ; 19: } 20: 21: lib1 = null ; 22: lib2 = null ; 23: } 24: } 25: MessageBox.Show( "Done!" );
Here the users will send emails with subject “DiscussionTitle [Discussion ID]” format.
YES/NO Windows 2008 Enterprise Server for example is supported but SQL server 2008 standard is not so make sure before compiling any bill of quantity/material that our products are supported on i64
if every tenant is hosted in its own web application : pros : 1- separate web.config 2- separate SLA (like access channels, zones, etc…) 3- separate management for IIS (since IIS can see the wep application level) cons : 1- different socket (IP:Port) even if we have to use host headers. it is a separate socket 2- aloooooot of overhead for managing diff web apps 3- not scalable (when we reach a large number of tenants we cannot provision each one as a web app) as compared to site collections 4- share same web.config 5- some IIS features (example bit rate throttling) will only be configured per web app
MS Pressi ja TechNet ajakirja punt on pannud kokku tasuta e-raamatu Deploying Windows 7 Essential Guidance , mis koondab endas mitmeid peatükke Windows 7 Resource Kit raamatust ja TechNet ajakirjast. Suuremate arvutiparkide administraatoritele ja Windows 7 kasutuselevõtust huvitatud ettevõtete IT osakondadele kohustuslik lugemine
Tõmba endale teos siit
When it came out that Google Voice had been refused entry into the hallowed halls of Apple’s App store, there was much wailing and gnashing of teeth. While I don’t have a horse in this race, or was driven to riot, I’ll admit to a certain amount of supplying villagers with pitchforks and torches . The New York Times’ David Pogue is reporting that Google is planning on releasing Google Voice as an iPhone-optimized web app
As any person who frequently uses email will tell you, email signatures are very important as they usually provide more information than just a standard name and email address from the sender.
I see Apple let Ninjawords in the App Store. Good for it