कैसे काई में समाधान पैकेज तैनात 2007

SharePoint के खेत में * .wsp या * .cab तरह समाधान पैकेज को लागू करने के लिए. पहले हम समाधान की दुकान का हल पैकेज फ़ाइल को जोड़ने की जरूरत, तो यह वेब अनुप्रयोग स्तर पर या खेत स्तर में तैनात किया जा सकता है(ग्लोबल तैनाती). तैनाती की दुकान का हल जोड़ने के लिए निम्न stsadm आदेश का उपयोग करें. stsadm -0 addsolution […]

कैसे काई में webpart से एक ईमेल भेजने के लिए 2007

हाय Devs, The following is the piece of code to send Email from webpart.

using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Collections.ObjectModel; using Microsoft.SharePoint.Utilities; using Microsoft.SharePoint; using System.Data; using System.Collections; namespace SendMail { public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart { private TextBox txtTo; private Button btnSendMail; protected override […]