User Profile

Collapse

Profile Sidebar

Collapse
Louisa55
Louisa55
Last Activity: Apr 7 '08, 03:07 AM
Joined: Mar 31 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Louisa55
    replied to Reading New Text Box Values
    in .NET
    Seems like what I was looking for, I'll give it a look!

    Thanks a lot :)
    See more | Go to post

    Leave a comment:


  • Louisa55
    started a topic Reading New Text Box Values
    in .NET

    Reading New Text Box Values

    I'm having a problem getting the new values out of a text box.
    When the page loads, I read from the database and display the users' email in a textbox.
    If the user then changes their email to something else I can only read the old value that was displayed with the page load.. Is there a way around this?
    See more | Go to post

  • Louisa55
    replied to Problems returning array from a service
    in .NET
    Thank you so much!
    Yes you were right, it just wasn't declaring it as an array!

    The random array values I was displaying were just so I could check I was using the array properly when reading into it from the database.

    Again, thank you
    See more | Go to post

    Leave a comment:


  • Louisa55
    replied to Problems returning array from a service
    in .NET
    I can't seem to get the values into the "list" variable in the consuming website.
    I keep getting errors like
    "Cannot implicitly convert type 'localhost.List Data[]' to 'localhost.List Data'" or
    "Cannot apply indexing with [] to an expression of type 'localhost.List Data'"
    and seem to be getting nowhere
    See more | Go to post

    Leave a comment:


  • Louisa55
    started a topic Problems returning array from a service
    in .NET

    Problems returning array from a service

    I've managed to write a service that returns an array in XML when tested by itself with no problems, but when I try and get my webpage to consume it I'm having difficulties

    Here's my service simplified:

    Code:
     public struct ListData
       {public string id, title, subtitle;}
    
    [WebMethod]
       public ListData[] GetListData()
       {
          int x = 0;
          int number = 0;
    ...
    See more | Go to post
No activity results to display
Show More
Working...