Hi I am trying to make a web service that get the data from a sql and output in a json format.
I was going to utilize the JSON.net library's for accomplishing this.
I was thinking SQL to LINQ then to JSON.
Is there a better way / easier way of doing this?
User Profile
Collapse
-
sql to json asp.net 3.5
-
sorry yea including image, and yes it worked! Thanks for your help! -
Xpath Help!
In ASP i used XMLDataSource to create a small menu. For the following xml how would i get just the @nav value and create a small navigation menu like this:
Menu architecture: exhibition publication review
So far i have this:
...Code:<asp:XmlDataSource id="MySource" DataFile='architecture.xml' XPath='/architecture' runat="server"/> <div id="nav">Menu
-
***glibc detected*** free(): invalid next size (fast): help?
I made a program that finds a minimum spanning tree.
In my main
I created
kruskal k;
and called
k.findMST();
...Code:void kruskal :: findMST(){ int edgesAccepted = 0; disjoint ds( numVer ); //disjoint set data structure edge e; //struct containing vertices and weight int u,v; while( ( edgesAccepted < numVer - 1 ) && !que.empty()) -
clientX/Y for Safari?
ClientX on safari gives the mouse coordinates relative to the whole document. Is there an solution for getting the mouse coordinates relative to the client's browser on safari? -
-
setInterval argument problem (Internet Explorer)
I am having trouble with the setInterval function for Internet...Code:checkWin = function(x) { alert(x); // Displays undefined } function startScroll(e) { if ( TimeOutID == null) { var x = e.clientX; alert(x);//displays correct X value TimeOutID = window.setInterval(checkWin,100,x); } } -
forward declaration of Pointer within an array of struct
i have the following 2 structs and i have an vector array for storing each type.
...Code:struct hashEntry{ int element; EntryType info; struct heapEntry *ptr; hashEntry( ) {} hashEntry( int i, EntryType t = EMPTY ) : element(i), info(t){} }; struct heapEntry { int element; struct hashEntry *ptr; } ; //this array is
No activity results to display
Show More
Leave a comment: