I've been trying to make this URL a workable string in C#, but unfortunately using extra "" or "@" is not cutting it. Even breaking it into smaller strings is proving difficult. I want to be able to convert the entire address into a single string.
this is the full address:
<https://my.address.com/BOE/OpenDocument/opendoc/openDocument.jsp?iDocID=ATTPCi6c.mZInSt5o3t_Xr8&sIDType=CUID&&sInstance=Last&lsMZV_MAT="+URLEncode(""+[Material].[Material - Key])+"&lsIZV_MAT=> I've also tried this:
string url = @"https://my.address.com/BOE/OpenDocument/opendoc/openDocument.jsp?iDocID=ATTPCi6c.mZInSt5o3t_Xr8&sIDType=CUID&&sInstance=Last&lsMZV_MAT="; string url2 = @"+ URLEncode("" +[Material].[Material - Key]) + """""; string url3 = @"&lsIZV_MAT="; Any help is appreciated.
String.JoinorString.Concatbetween them?