|
Home > Archive > Microsoft Content Management Server > June 2005 > Guid of attachment in attachment placeholder
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Guid of attachment in attachment placeholder
|
|
| Punisher 2005-06-29, 5:52 pm |
| Any way of getting it without having to parse the URL?
| |
| Stefan [MSFT] 2005-06-29, 5:52 pm |
| No. But this is an easy job:
string[] splt = AttUrl.Split('/');
string GUID = "{"+splt[3]+"}";
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
----------------------
"Punisher" <Punisher@discussions.microsoft.com> wrote in message
news:42B2BA52-A82F-436D-B381-98A620585909@microsoft.com...
> Any way of getting it without having to parse the URL?
| |
| Punisher 2005-06-29, 5:52 pm |
| Good enough. Thanks
"Stefan [MSFT]" wrote:
> No. But this is an easy job:
>
> string[] splt = AttUrl.Split('/');
> string GUID = "{"+splt[3]+"}";
>
> Cheers,
> Stefan
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
> New to MCMS?
> Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
> ----------------------
>
>
> "Punisher" <Punisher@discussions.microsoft.com> wrote in message
> news:42B2BA52-A82F-436D-B381-98A620585909@microsoft.com...
>
>
>
|
|
|
|
|