There is a scenario where I want to convert guid into string value while accessing it in transformation,I want to pass this guid into querystring, so that I can get the unique value,is there any way to get this done
GUID could be easily converted to a string. On the server side you would need to call .ToString() method. I a transformation you don't need to take any extra action, just get it like any other field: {%DocumentGUID%}
.ToString()
{%DocumentGUID%}
Hi Kalpak, What best practices say no need to convert GUID just pass it in query string example in transformation.
<a href="<%string.Format("http.example.com/view?yourGuid={0}",DocumentGUID)"#%> />
Please, sign in to be able to submit a new answer.