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 Mike Lewis 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. JohnBeton

    OleDbDataAdapter & Primary keys

    Hi, I have the following problem when saving data from an XML-file to a database using the OleDbDataAdapter: I'm using a typed dataset, derived from the xml-schema. I load the xml-file into the dataset and try to save the data to the database. (the dataAdapter has all the commands (select...
  2. JohnBeton

    Dagrid cell backcolor based on value

    Hi eibrahimovic, Take a look at the following link, that's how i got the job done... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/wnf_custdatagrid.asp
  3. JohnBeton

    navigating through Arraylist

    Yeah, That is exactly what i need. Thanks a lot for your reply.
  4. JohnBeton

    navigating through Arraylist

    Hello all, I have an arraylist with objects of type Product (self defined type). This arraylist is a member of a windows form (compact framework). Now i want to navigate through this arraylist, using buttons (next, previous) on the form. I can go to the next item without problems (using...
  5. JohnBeton

    saving merged dataset to database

    I changed the parameter but that doesn't make any difference... But i made the following test: The number of rows in the table of the dataset before merging : 5 The number of rows in the table of the dataset after merging : 10 So there are 5 new rows in this table. When I run through each...
  6. JohnBeton

    saving merged dataset to database

    Hello Jebenson, Thanks for your reply, But I tried your suggestion, and it is still the same: no errors, but no updates to database neither. any other suggestions ?
  7. JohnBeton

    saving merged dataset to database

    Hello, I have the following problem: I have 2 access databases: 1 for administration, 1 for production. This 2 databases have the exact same table: 'orderDetail'. When new orders arrive, the new orderDetails from the administrationDB and existing orderDetails from the productionDB are merged in...
  8. JohnBeton

    forms authentication + IIS

    good point :) This is how it is set up: I have a base directory with the main page: /schippersweb/index.aspx This page is public and contains links to other pages wich are secured: fe: /schippersweb/nl/index.aspx The web.config file in /schippersweb/nl/ denies unauthorized users and refers them...
  9. JohnBeton

    forms authentication + IIS

    Hi, I'm trying to set up forms authentication on my webproject but i can't get it to work and that's really driving me crazy... I read like every tutorial on this matter and did everything like they say, but still no succes... Could it be that it is some kind of setting in IIS that blocks it...
  10. JohnBeton

    forms authentication

    ic... But what's the difference between using the location-area or just put the: <authorization> <deny users="?" /> </authorization> in the web.config of the 'pageToProtect.aspx' ?
  11. JohnBeton

    forms authentication

    hmm, I'm not sure... I got the web.config from the microsoft tutorial on this matter. By adding the location element: <location path="schippersLogin.aspx"> <system.web> <authorization> <deny users="?"/> </authorization> </system.web>...
  12. JohnBeton

    forms authentication

    my code: web.config file from the secured webpage (location: schippers/nl/index.aspx): <authentication mode="Forms" > <forms loginUrl="http://localhost/schippers/webLogin/schippersLogin.aspx"> </forms> </authentication> <authorization> <deny users="?" /> </authorization>...
  13. JohnBeton

    forms authentication

    Hi everyone, I have a problem with forms authentication. It seems to be a problem that occurs a lot (found a lot of people on forums with the same problem) but i can't find a descent solution. The thing is that when an unauthenticated user wants to access a secured page, he gets transferred to...
  14. JohnBeton

    deserializing xml

    Hi, I have a problem deserializing xml into objects. my class structure: orderHeader order orderDetail orderHeader has an arraylist of [order] order has an arraylist of [orderDetail] orderHeader and the arraylist of [order] is filled, but the arraylist of [orderDetail] remains empty...
  15. JohnBeton

    javascript function call from asp-code

    Hi everyone, I have a stupid problem, but i can't get it to work: i have this function to format a date: <script type="text/javascript" language="JavaScript"> <!-- function convertDate(DT){ parts = DT.split('-'); if (parts[0] < 13){ datum = parts[1] + "/" + parts[0] + "/" + parts[2]...
  16. JohnBeton

    strange date format problem

    I find it a bit strange, but it actually works !! thanks a lot !!
  17. JohnBeton

    strange date format problem

    Hi everyone, I have a problem with date formats: I have a date-field in a table with a short-date format (according to our regional settings (belgium) it is dd/mm/yyyy). I use vba to insert data in the table, for the date-field i use the following code: #" & Format(Date, "dd/mm/yyyy") & "#...
  18. JohnBeton

    mapPath problem

    well, thats the problem in fact... at the moment, the database is in the same folder as the .asp file. this works, but is not very good, since the db is downloadable, the database folder in the root is a hidden folder, and not accessible to unauthorized users... thats why i want to move it...
  19. JohnBeton

    mapPath problem

    none of the two suggestions work... but thx anyway someone else with other suggestions ?
  20. JohnBeton

    mapPath problem

    To be honest, i dont know... i test my asp files online, since i only have to make some adaptations... have no idea wich version of iis my host has...

Part and Inventory Search

Back
Top