theprowler
Programmer
Hi all,
i've got this little problem:
i've got a "Links" list in which i want to insert a new link but i perform this operation through SDK... I can insert the new item but...
Here's some code:
//updating "Links" list...
//set URL field
this.addedItem["URL"] = this.currentSiteCollection.Url + "/" + this.urlTextBox.Text;
//set Country Name
this.addedItem["Country Name"] = this.titleTextBox.Text; this.addedItem.Update();
As you can see i've created a new item that represents an URL to a new site created.
this is the (ugly) result i get on my page:
"Country Name"
India
----> and on the same row...
"URL"
So, this URL is too big, i mean too ugly to see that in a web page..., there's a way to set directly URL description so i can see the description and not the Full URL?
Thanks in advance!
Massimo
i've got this little problem:
i've got a "Links" list in which i want to insert a new link but i perform this operation through SDK... I can insert the new item but...
Here's some code:
//updating "Links" list...
//set URL field
this.addedItem["URL"] = this.currentSiteCollection.Url + "/" + this.urlTextBox.Text;
//set Country Name
this.addedItem["Country Name"] = this.titleTextBox.Text; this.addedItem.Update();
As you can see i've created a new item that represents an URL to a new site created.
this is the (ugly) result i get on my page:
"Country Name"
India
----> and on the same row...
"URL"
So, this URL is too big, i mean too ugly to see that in a web page..., there's a way to set directly URL description so i can see the description and not the Full URL?
Thanks in advance!
Massimo