Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~527 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Tsukamoto Kyoko

I have a question on the WebRequest WebResponse thingee.. This is my code: public void showDateRange() { FromDate = DateTime.ParseExact(txtFromDate.Text, "M/d/yyyy", null); ToDate = DateTime.ParseExact(txtToDate.Text, "M/d/yyyy", null); WebRequest request = (WebRequest)WebRequest.Create(@"D:\Final Charts\LineGraph\linexml.aspx"); WebResponse response = request.GetResponse(); while (reader.Read()) { if (reader.Name == "category") { xmlDate = DateTime.ParseExact(reader.GetAttribute("name"), "M/d/yyyy", null); hffromPoint.Value …

Member Avatar for Tsukamoto Kyoko
0
164
Member Avatar for Tsukamoto Kyoko

I have this database in stored inside my Visual Studio Express 2013 for web. How can I use XSLT to turn into: <?xml version="1.0" encoding="utf-8" ?> <graph caption='Cashflow' subcaption='(Drag to zoom out)' hovercapbg='FFECAA' hovercapborder='F47E00' formatNumberScale='0' decimalPrecision='0' showvalues='0' numdivlines='15' numVdivlines='15' yaxisminvalue='1000' yaxismaxvalue='1800' showVLineLabelBorder='1' numVisibleLabels='500' legendPosition='RIGHT' SCROLLBAR='Glow' btnSwitchToPinModeTitle='Compare Graphs'> <categories> <category name='1/1/2014' …

Member Avatar for xml_looser
0
363