This post is applicable to this WFFM version: https://dev.sitecore.net/Downloads/Web%20Forms%20For%20Marketers/Web%20Forms%20For%20Marketers%2081/Web%20Forms%20For%20Marketers%2081%20Initial%20Version/Release%20Notes private void SaveToDatabase(ContactFormArgs args, Item blog) { try { var formId = Config.BlogConfig.GetFieldValue(“WebFormId”).ToID(); var formItem = Sitecore.Context.Database.GetItem(formId); if (formItem == null) return; var fields = formItem.Children.ToList(); var list = new List { GetField(“FirstName”, args.FirstName, fields), GetField(“LastName”, args.LastName, fields), GetField(“Email”, args.Email, fields), GetField(“Question”, args.Question, fields), GetField(“BlogName”, blog.GetTitle(), […]
https://%5Bservice now url]/[ci__or_object_name]_list.do
Our work service now is not configured to expose the sys_id parameter in the list view – causing it a little bit painful to export from CSV via the usual way. Some googling indicates that I should be able to export csv simply by typing the following URL: https://%5BService Now URL]/[Table Name].do?CSV This does not […]
I stumbled across this post in stackoverflow when trying to find a way to get the list of MAC/IP address in C#: Querying DHCP Server in C# The link sounds very promising but I was having trouble getting the required dll from the interwebs since Windows 2000 Resources Kit does not seems to exists in […]
Sitecore Publishing Service is the new sitecore 8.2’s publisher. It’s more efficient and comes with it’s own publishing dashboard. More information can be found in: https://dev.sitecore.net/Downloads/Sitecore_Publishing_Service.aspx There are times however that you might want to go back to the classic publishing service. Here’s the step by step instruction on how to do this: 1. Locate […]
We had an issue that only occurs in Internet Explorer. The site in our subdomain was throwing error user navigate from our main domain (example.com) to our subdomain (sub.example.com) but not when user navigate to subdomain straight away without ever visiting our main domain. After extensive investigation, we found out that IE decided to pass over […]
We had to create a service broker notification service for our integration project a few months back. It was quite hard to find something that actually has an end to end solution to showcase the capability of service broker. So, months after the project, I decided to create a mini Hello World level tutorial to […]
Data: A banana A apple A guava B banana B apple A pear To aggregate multiple column into one column, we can use the new(ish) with() statement: The resulting value for this statements is: B apple,banana A apple,banana,guava,pear