-1
votes
0answers
479 views
Reading XML (for reading into variables or cookies, or what ever) in C# ASP.net [closed]
I spent a bit of time browsing various things to find a decent solution for reading bits of a config file, so this will probably be of use to someone.
Contains
How to read a s …
0
votes
2answers
2k views
Leading Zero Date Format C# (asp.net)
I have this function...
private string dateConvert(string datDate)
{
System.Globalization.CultureInfo cultEnGb = new System.Globalization.CultureInfo("en-GB");
Syste …
0
votes
4answers
2k views
Whats the quickest way to dedupe a querystring in C# (ASP.net)
I have an issue whereby the company uses a business tracking system that captures a users first visit and redirects them to the page they were trying to visit but with a refferer URL attached...
No …
0
votes
4answers
518 views
Including class libraries within a page behind, C# ASP.Net
Working on our restricted system means I cant drop class librariess into the app_bin/bin/App_Code basically any normal folder, so I'm currently linking to my class library as follows...
…
0
votes
4answers
162 views
How do I detect the current culture of the executing thread?
I have a nice function setup for formatting dates as per
http://stackoverflow.com/questions/461098/leading-ze …
0
votes
1answer
58 views
Convert ALPHA-2 to ALPHA-3 in C# ASP.net
Is there a quick built in way to convert ALPHA-2 (GB) to ALPHA-3 (GBR) in C# without having to create an array of them all.
…
0
votes
3answers
90 views
Where to go to learn about C# Asp.net with MVC & WebServices
I'm strugling to find any decent resources with regards consuming a webservice in an MVC/C# Asp.net App.
Any suggestions?
…
0
votes
1answer
176 views
How do I use Optional Parameters in an ASP.NET MVC Controller
I have a set of drop down controls on a view that are linked to two lists.
//control
ViewData["Countries"] = new SelectList(x.getCountries().ToList(), "key","value",country);
ViewDa …
2
votes
3answers
170 views
Optimal Way to Link Multiple Arrays in C# ASP.net
I have 3 arrays coming from a webservice...
Countries : Consists of Key - Value
Regions : Consists of Id - Name - CountryCode(fk: countries)
Areas : Consists of Id - Name - Co …
1
vote
1answer
571 views
Linq Error “Could not find an implementation of the query pattern for source type ‘System.Linq.IQueryable’ Join Not Found’…
What the hell does this mean? Ignore the return, and the get, The results will be flattened and stuck in the application mem (so this will be a set... probably)
"Co …
0
votes
2answers
244 views
How do I store List ~ Array in the Application State (C# ASP.net MVC)
I'm trying to stick some data into the app so I can then build a public string get + linq query to pull out just the bits I want when I need them.
I'm just struggling to store it and then h …
0
votes
1answer
110 views
Dealing with LINQ / HttpContext.Application & WebServices
I have the following function + code to parse and query a webservice request then in theory store the results in the application (as it only needs to refresh once a day, which luckily is when the a …
1
vote
3answers
253 views
Fastest way to store a Large Set of Data (C# ASP.net)
A webservice i'm working with sends back a result set that equates to around 66980 lines of XML, .net returns this as a list object.
As the user journey requires that we can reload this set …
0
votes
3answers
98 views
Is there a quick way to say If notempty x = y else x = default in a Linq where query
Is there a quick way to say
Where (data.x == (If notempty x = y else x = default))
Assuming the data being compared is both strings
Compare listit …
1
vote
2answers
75 views
How do I store a hash with the search results?
I'm pulling 500 results from a search query to a webservice; I store these in the session for that user so pagnation doesnt cause further calls.
What I want to do is stick the parameters to …
