Hello ya'll, im playing around trying to create an app that reads xml, but my problem at the moment is my method to select different xml-sources.
Code for selecting, and showing results:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Appen.BL;
namespace Appen
{
public partial class ProviderList : System.Web.UI.Page
{
public string SelectedCategory()
{
string selectedString = "";
string v = "";
if (Request.QueryString["kategori"] != null)
{
if (v.Equals("Ekonomi", StringComparison.OrdinalIgnoreCase))
{
selectedString = "http://www.dn.se/ekonomi/m/rss/senaste-nytt?id=&epslanguage=sv";
}
else if (v.Equals(&q ...
Go to the complete details ...