Search results for query: *

  1. T

    Update Issue with a gridview

    The IDE wrote it for me...
  2. T

    Update Issue with a gridview

    Someone else solved this issue and their response was: Remove the TestID field from the SET clause: UPDATE Test SET TestName = @TestName, StateID = @StateID, PersonTypeID = @PersonTypeID WHERE (TestID = @Original_TestID) Or set ReadOnly=false on the TestID column in...
  3. T

    Update Issue with a gridview

    I have just been trying to use a dataset to populate a gridview and have a pretty standard table that i created for test purposes: tblTest TestID TestName StateID PersonTypeID The gridview populates properly with the adapter for it in my dataset and I created all the default commands...
  4. T

    Getting data from a stored procedure:

    Hey i need to get the values from the stored procedure below, basically the Name, Description, and is Active values and display them in two textboxes and a checkbox. How can i do this? Or can it be done with this stored procedure? I havent been able to find any good examples on the web... (I am...
  5. T

    .Asp 2.0 - Sitemap control issue

    How do i define which webpages can be rolled up or appear under other pages in the treeview navigation? I want to have the first two pages be under default and the second two be under Admin... My web.sitemap code: <?xml version="1.0" encoding="utf-8" ?> <siteMap...
Back
Top