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 derfloh 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: *

  • Users: newbieAl
  • Content: Threads
  • Order by date
  1. newbieAl

    windowsauthentication asp .net 2.0

    I have the following in place. Is this sufficient code for windows authentication and AD roles? Is the code in the right event (page_load) or should it be somewhere else? Right now I get the statement on the top of the screen, you do not have access, and the default page loads. I'm not in the...
  2. newbieAl

    update not working on gridview

    When I hard code the values into the updatecommand then the gridview gets updated, but if I just have the parameters the gridview does not get updated. What could the issue be? This updates the grid: UpdateCommand="Update atable set [afield]='test', [bfield]='test' where [id]=@id" This...
  3. newbieAl

    filtering gridview not working

    I have two drop down lists to use as a filter for a gridview. This is what the select command in the gridview's datasource looks like: SelectCommand="SELECT * FROM [datatable] WHERE ([afield] = @afield) OR ([bfield] = @bfield) "> <selectparameters> Type="String" /> Type="String" />...
  4. newbieAl

    dropdown list issue

    I have a drop down list with gridview. When the page loads the option in the drop down is 'select an item'. However the gridview does not load all records when the page is first loaded and the user has not made a selection yet in the drop down. Here is my code: <asp:dropdownlist...
  5. newbieAl

    Override ChangePassword? ASP .NET 2.0

    I am using the ChangePassword Control and would like to know if I can override the ChangePassword class/method. I have my own logic in C# that I would like to use when the user clicks the Change Password button of this control .
  6. newbieAl

    not-null-field issue

    I have a C# application that calls a MySQL procedure and writes data to the db. All of the fields get populated properly but for the ID field, which is my PK field. It populates the field with an empty string instead of the value. the ID field is a varchar field. When I try a direct insert...

Part and Inventory Search

Back
Top