by Sandesh | Jun 29, 2010 | .Net
You can send the mail using godaddy hosting acocount using .NET 2.0 System.Net.Mail code namespace. Here is a simple snippet of how to send an email message from “email@website.com” to multiple email recipients It uses the godaddy smtp server.(note that the To a CC...
by Sandesh | Jun 27, 2010 | .Net
Singleton pattern is the one of the best known pattern in the software engineering. The singleton pattern is a design pattern that is used to restrict instance of class to one object, and usually gives simple access to that instance. Most commonly, singletons...
by Sandesh | Jun 26, 2010 | .Net, Sharepoint
When we tried to save the custom webpart property it is not retaining the values for feature usages. We explored possibility to find the solution so now I am able to save the property values. Microsoft published good article on this. Normally webpart persists...
by Sandesh | Jun 26, 2010 | Sharepoint
You can use sharepoint object model you can get the email id from login user name. I have created one method to get the email ID after passing the user first and last name. I have used Microsoft Sharepoint SiteUserInfoList library, you can find all the imported user...
by Sandesh | Jun 25, 2010 | .Net, Javascript
.net 2.0 rolled out with build in treeview control. It has many built in features like showing checkbox for all treeview node, formating the node. we code give the styles etc. We can enable the checkbox to select the node or leaf by just setting treeview...