vote up 1 vote down star
1

Hi I am developing using the SharePoint namespace and I ran into the following error when I try to retrieve a URL column from one of my lsits.

 "Value does not fall within the expected range"

All I am doing is:

item["URL"]

Can someone tell me what I can do about this?

flag

33% accept rate

6 Answers

vote up 0 vote down

Did you misspell it? or use the wrong case?

link|flag
sometimes there is an internal name which doesn't match the field name. You might have to reference that internal name instead – OTisler Mar 2 at 18:24
I checked the internal name it is URL as well... – Oliver S Mar 2 at 18:28
hmm, how are you retrieving the list? Is there a larger snippet you can include? – OTisler Mar 2 at 18:34
vote up 0 vote down

This usually means "URL" is not a field in the list.

If it's a promoted InfoPath column, try deactivating and re-activating the form template to the site. I have noticed that I have to do this whenever I add a new promoted field to an infopath template.

link|flag
It is in the list... – Oliver S Mar 2 at 18:23
vote up 0 vote down

To get the URL of an SPListItem, use Item.Url.

link|flag
Not the URL I am looking for, I am looking for a column URL I created. – Oliver S Mar 2 at 18:29
If it's a promoted InfoPath column, try deactivating and re-activating the form template to the site. I have noticed that I have to do this whenever I add a new promoted field to an infopath template. – Tundey Mar 2 at 19:02
vote up 2 vote down

The error definitely means that the field can't be found.

Debug the process and look at the ListItem.Fields.SchemaXML property to find its internal name, it may be saved internally as something other than URL. You can also use the following method to get a list item value.

SPField l_field = l_item.Fields.GetField("URL");
string l_fieldValue = l_item[l_field.Id].ToSting();

The GetField method looks for a field by both DisplayName & InternalName.

link|flag
I recommend SharePoint manager for looking at the schema xml and other fun stuff in SharePoint – Nat Mar 3 at 21:56
vote up 1 vote down
    public static string GetItemURLValue(SPListItem item, string fieldName)
    {
        string exit = "";
        SPFieldUrlValue link = new SPFieldUrlValue(item[fieldName].ToString());
        exit = link.Url;
        return exit;
    }
link|flag
vote up 0 vote down

There is a special method for retrieving URLs. Try this:

SPListItem li = ...
SPFieldUrlValue fuv = new SPFieldUrlValue(li[strFieldName].ToString());
return fuv.Url;
link|flag
Sorry, I see that ryan has posted a similar solution. – strongopinions Sep 29 at 15:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.