Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nicklieb

    bypass RequiredFieldValidator if hit Exit button

    or you can set the validationgroup to something different.
  2. nicklieb

    Combo jumps to index 0

    sounds like the drop down is being bound again on postback, just wrap you bind function with if (!(isPostBack)) {} so you only bind it once.
  3. nicklieb

    Set and get checkbox value in GridView

    look at RowDatabound for the gridview, then search for the checkbox.
  4. nicklieb

    odbc: binding array as parameter

    I had to do something like this resent, I converted the list (or could be an array) into a comma delimited string and passed that over as a varchar into the stored procedure.
  5. nicklieb

    DropdownList and Ajax

    you have to add enablePostback=true
  6. nicklieb

    ScriptManager and MasterPages

    http://www.google.co.uk/search?q=ajax+tab+panel&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
  7. nicklieb

    Namespace not found

    wierd one this, i got a colleauge to compile and upload and it worked... very strange
  8. nicklieb

    Namespace not found

    no they're not in the GAC, as i don't want it to be a server wide available dll. It's only relevant to this particulare application, hence it only included in the local bin folder.
  9. nicklieb

    Namespace not found

    error CS0246: The type or namespace name 'xxx.Custom.TreeNavigator' could not be found (are you missing a using directive or an assembly reference?) this is driving me bonkers. before you say it, the spellings are correct, and i have checked and rechecked this issue and the spellings are...
  10. nicklieb

    GridView - dynamically disable HyperLinkField

    one way is to disable the link or grid view row render, using the RowDataBound method, then search for the link and disable.
  11. nicklieb

    Dynamic lnks?

    have a look at url rewriting. http://www.google.co.uk/search?client=firefox-a&rls=org.mozilla%3Aen-GB%3Aofficial&channel=s&hl=en&q=c%23+url+rewriting&meta=&btnG=Google+Search
  12. nicklieb

    ASP.NET Web Service Security

    sure u can use the guid authentication in a windows app, you just hold it in memory, and when you call a method it gets passed along have a look at these urls http://msdn.microsoft.com/en-us/library/9z52by6a(VS.80).aspx...
  13. nicklieb

    ASP.NET Web Service Security

    a method that i have used in the past is for an external app to log in and a GUID is returned by the webservice. this guid is then passed back from the external app in the soap header and verified against the guid held in db whenever a call to a method is made. e.g. if time was outside of 20...
  14. nicklieb

    view the latest inserted record

    2 ways you could do this, (1) is the get the max(id) row from the db, (2) or you're stored procedure that adds the new record could return @@identity, you can then do a get from that returned id (this is preferred).
  15. nicklieb

    web page Progress Bar

    ^^ Ajax, using update panels and updateprogress panels.
  16. nicklieb

    master pages-controls disappearing

    if i'm reading this write, you're trying to use 2 separate pages at the same time with the masterpage. you can only use 1 page (aspx) at a time, this then binds with the masterpage. if you want to the content areas to be displayed at the same time, they have to be on the same aspx page. Unless...
  17. nicklieb

    Position page after postback

    probably already answered in post above, but there is an attribute that can be added to the top of the aspx file, in the page attributes area. MaintainScrollPositionOnPostback="false", or set to true if you do want to maintain position (this is assuming that there is not text at the top of...
  18. nicklieb

    Server Application Unavailable

    it will be permission for the the code, make sure ASPNET service has minimum read/write permission on the folder.
  19. nicklieb

    Add a new record to access database in ASP

    http://www.google.co.uk/search?sourceid=navclient&ie=UTF-8&rlz=1T4RNWN_enGB252GB252&q=Cannot+update%2e+Database+or+object+is+read%2donly%2e%22
  20. nicklieb

    Add a new record to access database in ASP

    you probably need to add the Anonymouse IUSR account to the security tab on the properties on the mdb file.

Part and Inventory Search

Back
Top