User Profile

Collapse

Profile Sidebar

Collapse
shiznit
shiznit
Last Activity: Aug 9 '08, 08:54 PM
Joined: Nov 7 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • shiznit
    started a topic sql to json asp.net 3.5
    in .NET

    sql to json asp.net 3.5

    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?
    See more | Go to post

  • shiznit
    replied to Xpath Help!
    in XML
    sorry yea including image, and yes it worked! Thanks for your help!
    See more | Go to post

    Leave a comment:


  • shiznit
    started a topic Xpath Help!
    in XML

    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
    ...
    See more | Go to post

  • ***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())
    ...
    See more | Go to post

  • shiznit
    started a topic clientX/Y for Safari?

    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?
    See more | Go to post

  • Nice, closure functions! Thanks for your assist~
    See more | Go to post

    Leave a comment:


  • setInterval argument problem (Internet Explorer)

    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);	
    	}
    }
    I am having trouble with the setInterval function for Internet...
    See more | Go to post

  • 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
    ...
    See more | Go to post
No activity results to display
Show More
Working...