The namevaluecollection tag has no wiki summary.
4
votes
6answers
73 views
Remove a single value from a NameValueCollection
My data source could have duplicate keys with values.
typeA : 1
typeB : 2
typeA : 11
I chose to use NameValueCollection as it enables entering duplicate keys.
I want to remove specific key\value ...
1
vote
3answers
41 views
Copy key values from NameValueCollection to Generic Dictionary
Trying to copy values from an existing NameValueCollection object to a Dictionary. I have the following code below to do that but seems the Add does not accept that my keys and values are as Strings
...
2
votes
2answers
71 views
ASP.Net/C# convert NameValueCollection to IDictionary?
I’m trying to help my son upgrade a web site I built for him last year. He wants to implement Amazon Simple Pay. I’m SO close to getting it, but have an error that I don’t know how to address. It’s ...
0
votes
1answer
47 views
How can I populate a NameValueCollection via a parameter in a shared method?
I have a code segment:
var requestMock = new Mock<HttpRequestBase>();
var queryString = new NameValueCollection();
queryString["abc"] = "123";
queryString["qwe"] = "456";
queryString["yui"] = ...
0
votes
3answers
79 views
How to store name value pair in file
I have a large number of name value pair that I need to use in a program. What should be the best way to store the name value pair in a file so that I can easily parse them in my python program. For ...
1
vote
0answers
65 views
ASP.NET Request.Form case-sensitivity
I have some C# code that retrieves the value of Request.Form["KeyName"], however, the code that is submitting the request is passing keyName=value. This works in our dev/stage environment, but not in ...
0
votes
1answer
45 views
Setting values with commas in namevaluecollection
I am using the following code to access and manipulate query string
NameValueCollection qs = HttpUtility.ParseQueryString(Request.Url.Query);
qs.Set("OID", "5,6,7");
Response.Redirect( absolutepath ...
0
votes
1answer
56 views
Fastest way to do name value pair look up for a long list
I'm working with a long list of name - value pairs and I will be checking with this list alot so I wanted to know what you guys think is the fastest way to do named value pair look ups. An example of ...
0
votes
1answer
127 views
NameValueCollection in Windows Phone 8
i want to use NameValueCollection in windows phone 8, but I can not see this option in WP8 SDK. Can you help me please?
0
votes
2answers
134 views
how can i get HttpContext.Current.Request of more than 1000 html controls value?
I have more than 1000 controls in a html web page. when i submit the page i get only values of 1000 controls
NameValueCollection nv = (NameValueCollection) HttpContext.Current.Request.Form
nv.count ...
0
votes
0answers
90 views
Linq to Entities with NameValueCollection
What is the best way to deal with the problem that you can't use a NameValueCollection
or Dictionary in a LINQ to Entities query?
I know you can assign the value to a temporary string variable and ...
0
votes
2answers
107 views
F# NameValueCollection to Map
I have a NameValueCollection which I need to convert to a Map and I just can't work it out. I tried:
let headerMap (m : MailMessage) = m.Headers |> Map.map (fun k v -> v.[k])
Do I need to ...
2
votes
2answers
605 views
Parse the Uri string into name-value collection in java
I've got the URI like this:
https://google.com.ua/oauth/authorize?client_id=SS&response_type=code&scope=N_FULL&access_type=offline&redirect_uri=http://localhost/Callback
I need a ...
0
votes
1answer
1k views
Get POST Values in ASP.NET using NameValueCollection
So I have 2 pages. They both have the same master page and are part of the same Web Application. I am trying to submit one page to the other. On the submitting page I have a few elements such as
...
1
vote
1answer
391 views
namevaluecollection and windows phone
using System.Collections;
using System.Collections.Specialized;
NameValueCollection qs = new NameValueCollection();
And it text me, that it is missing any using library...
I have some operators -
...
0
votes
2answers
403 views
c# how to request url parameters and change char
After getting some url parameters, I would like to use them later in my c# code, but in a slightly different format.
...
0
votes
1answer
497 views
Alternative for NameValueCollection to be used in serialization
I've situation where in I cant use Dictionary for name value collection of strings. Because my name value pair contains duplicate keys. This is a support for legacy system so please don't ask me to ...
17
votes
6answers
8k views
Check if Key Exists in NameValueCollection
Is there a quick and simple way to check if a key exists in a NameValueCollection without looping through it?
Looking for something like Dictionary.ContainsKey() or similar.
There are many ways to ...
0
votes
1answer
610 views
ViewState .Add(… or ViewState[“XXXXX”] is efficient ?
I have a reasonable dout,
ViewState .Add(.... or ViewState["XXXXX"] is efficient ?
Eg.
1).
ViewState.Add("Example1", value );
2).
ViewState["Example1"]=value;
Both gives the same output, ...
0
votes
2answers
204 views
append a Name Value pair to other one
here is the code of the calling method -
NameValuePair[] data = {
new NameValuePair("first_name", firstName),
new NameValuePair("last_name", lastName),
new ...
1
vote
2answers
312 views
Sorting a NameValueCollection by value in c#
I have a NameValueCollection and I would like to sort this on his value. Does anyone got some ideas how to do this easely?
I was thinking to wrap it into a SortedList or SortedDictionairy but I'm not ...
1
vote
0answers
251 views
Static Objects | Custom ConfigurationManager for Environment Independent Web.config
I am working on a typical .net web app which is first deployed at test environment - ENV- T
and then after complete testing it is moved to Production ENV - P.
Our hosting provider will not deploy ...
0
votes
2answers
1k views
How to create a custom section that behaves like an AppSettings section?
I want to have the following structure in my config:
<MySection>
<add key="1" value="one" />
<add key="2" value="two" />
<add key="3" value="three" />
...
7
votes
2answers
3k views
C#: Convert Dictionary<> to NameValueCollection
How can I convert a Dictionary to a NameValueCollection?
The existing functionality of our project returns an old fashioned NameValueCollection which I modify with LINQ. The result should be passed ...
9
votes
3answers
4k views
how to convert NameValueCollection to JSON string?
I tried:
NameValueCollection Data = new NameValueCollection();
Data.Add("foo","baa");
string json = new JavaScriptSerializer().Serialize(Data);
it returns: ["foo"] I expected {"foo" : "baa"}
...
4
votes
5answers
4k views
Get all values of a NameValueCollection to a string
this should be realy easy, but it seems i dont manage to do it.
i have the following code:
string Keys = string.Join(",",FormValues.AllKeys);
i was trying to play around with the get:
string ...
0
votes
1answer
130 views
namevaluecollection vs lookup
I need to represent some data that has a key and one or more values, seems there is a namevaluecollection or a lookup.
From what I can tell the main difference between the two is that lookup is ...
0
votes
2answers
191 views
How can I best log a NameValueCollection into a database field in a readable way?
Is there a standard way of doing this? I had considered using XML, but perhaps there is a more straight-forward way.
To clarify, I'm dumping the whole collection in a "details" column in my database ...
1
vote
1answer
420 views
NameValueCollection to string? Help
The service I've written waits for requests and when one arrives it extracts the querystring, parses it and saves the values in database. However, for some odd reason I cannot use the ...
19
votes
5answers
12k views
C# Iterate through NameValueCollection
I have a NameValueCollection, and want to iterate through the values. Currently, I’m doing this, but it seems like there should be a neater way to do it:
NameValueCollection nvc = new ...
1
vote
1answer
219 views
How do I update an objects parameters from a NameValueCollection (or similar)?
I am trying to update public parameters of a known type MyClass from a NameValueCollection (see code below). This is possible in MVC3, the Controller class has an UpdateModel method which does exactly ...
2
votes
1answer
1k views
Convert DataRowCollection to NameValueCollection
I need an elegant way to convert a DataRowCollection to a NameValueCollection.
note: during the conversion I need a section where I can invoke an inflector to tidy up key names
0
votes
3answers
789 views
Encode values in a NameValueCollection C# .net
I have a name value collections which is passed into a method to send to another system via a web client.
public string DoExtendedTransferAsString(string operation, NameValueCollection query, ...
3
votes
2answers
851 views
sorting a namevaluecollection
How do I sort a namevaluecollection in alphabetical order? Do I have to cast it to another list first like the sorted list or Ilist or something? If then how do I do that? right now I have all my ...
1
vote
2answers
3k views
How to Modify HTTP Header of a request using C#?
I was trying to modify a HTTP Header using C#. I tried to manipulate the Request.Headers on Page preinit event. But when i try to set anything to the Headers, i get PlatformNotSupportedException. ...
2
votes
4answers
229 views
How to set the length of NameValueCollection
I am a newbie in C# (not in programming). Please, what is the simplest way to decrease items count in NameValueCollection object? For example I have 13 name-value pairs in collection and I want to cut ...
6
votes
4answers
3k views
NameValueCollection to URL Query?
I know i can do this
var nv = HttpUtility.ParseQueryString(req.RawUrl);
But is there a way to convert this back to a url?
var newUrl = HttpUtility.Something("/page", nv);
1
vote
3answers
672 views
AppSettings fallback/default value?
ASP.NET
For each appSetting I use, I want to specify a value that will be returned if the specified key isn't found in the appSettings. I was about to create a class to manage this, but I'm thinking ...
3
votes
6answers
5k views
Getting a Request.Headers value
Very simple I'm sure, but driving me up the wall! There is a component that I use in my web application that identifies itself during a web request by adding the header "XYZComponent=true" - the ...
1
vote
5answers
270 views
Does this copy the reference or the object?
Sorry, I am being both thick and lazy, but mostly lazy. Actually, not even that. I am trying to save time so I can do more in less time as there's a lot to be done.
Does this copy the reference or ...
0
votes
1answer
133 views
NameValueCollection doesn't actually do anything with its IEqualityComparer?
I am looking at System.Collections.Specialized.NameValueCollection and it takes an IEqualityComparer, which is good news if someone like me wanted to sort the items in the collection by, say, ...
23
votes
3answers
18k views
NameValueCollection vs Dictionary<string,string> [duplicate]
Possible Duplicate:
IDictionary<string, string> or NameValueCollection
Any reason I should use Dictionary<string,string> instead of NameValueCollection?
(in C# / .NET Framework)
...
2
votes
1answer
510 views
Can a freemarker interpolation contain an interpolation?
Let's say I have Freemarker variable A that contains the name of another variable on the hash tree, say. "B." I'd like to use a to read the value of B so, for example, if B contained "C" I could tell ...
6
votes
4answers
2k views
Reverse function of HttpUtility.ParseQueryString
.Net's System.Web.HttpUtility class defines the following function to parse a query string into a NameValueCollection:
public static NameValueCollection ParseQueryString(string query);
Is there any ...
0
votes
2answers
397 views
ASP.Net and NameValueCollection
I have the following method:
public object[] GetEventsByUser(DateTime start, DateTime end, string fullUrl)
The value of the fullUrl is:
...
2
votes
1answer
403 views
Can't resolve NameValueCollection with Autofac
I am using Autofac 2.1.12 to handle my dependency injection, and am having trouble with one specific issue. I can't seem to resolve a NameValueCollection dependency.
Consider the following code ...
0
votes
3answers
1k views
Sort NameValueCollection against Enum
I have to sort a namevaluecollection(Items usually 5 to 15) Against an enum(having items more than 60). Right now I am using this extension function, Anyone have better idea to write this code....
...
2
votes
1answer
306 views
What happens behind the scenes during deserialization of a NameValueCollection?
What's going on behind the scenes in .NET (de)serialization that makes it behave the way it does in the following scenario? (This is a test app that just illustrates my setup.)
I have a class with a ...
2
votes
3answers
3k views
Modifying config sections in App.config either at runtime or install time
I have an WinForms application that is deployed using Visual Studio 2008's publish (ClickOnce) system. Within the application's app.config file I have a config section that is required by a third ...
0
votes
0answers
2k views
Accessing System.Collections.Specialized.NameValueCollection in Silverlight v3
I can see that the system reference is added in silverlight project in visual studio. The assembly is mapped to C:\Program Files\Reference Assemblies\Microsoft\Framework\Silverlight\v3.0\system.dll.
...

