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 TouchToneTommy 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: baden
  • Order by date
  1. baden

    Auto code generator to call stored proc's - help

    Change of plans... started using MyGeneration.dOOdads framework. Love it!!! See http://www.mygenerationsoftware.com/portal/default.aspx
  2. baden

    Reading form fields from Server.Transfer ???

    Well, here's a solution if anyone cares.... The initial problem was saving the variables from page 1 on page 2's PostBack, where only page 2's variables where showing up. Instead of Server.Transfer() on page 1, set the action of the form to page 2. In page 2, I created a PlaceHolder control...
  3. baden

    Reading form fields from Server.Transfer ???

    Ok, after page 1 is completed, the server.transfer opens up page 2 - where all the values of page one are listed. That's great, so I figured that when hitting the submit button on page 2, I would be able to add the all the values. However, page 2 does not have any declarations in the...
  4. baden

    Reading form fields from Server.Transfer ???

    For a user signup process, I have two pages containing forms. The process is as follows: User enters data in page 1, the Server.Transfer("page2.aspx", true) to page 2. On page 2, I can see all the form variables form page one by doing a foreach (string vars in Page.Request.Form) ... That's...
  5. baden

    Auto code generator to call stored proc's - help

    Ah, my mistake, I wasn't using Query Analyzer. Well, I'm happy to say that we just had a few thousand lines of code generated for our DAL using CodeSmith and that stored procedure. I've created a tutorial named "C#.Net - Simplifying CRUD - Data Access Layer (DAL)" that should be validated in...
  6. baden

    Nested CheckBoxList controls ?

    Man, it would be nice to be able to nest checkbox lists. I did manage to do it, but not w/ the checkbox list. I'll write an FAQ.
  7. baden

    Auto code generator to call stored proc's - help

    Regarding: http://www.codeproject.com/cs/database/CSCodeBuilder.asp This is a stored procedure that takes the in the name of another stored procedure, and generateds the code to call it. Whenever I use it, nothing happens, all I get is: Query OK, -1 rows affected (0.31 sec) Return...
  8. baden

    Code generator to call any stored procedure - help

    Regarding: http://www.codeproject.com/cs/database/CSCodeBuilder.asp This is a stored procedure that takes the in the name of another stored procedure, and generateds the code to call it. Whenever I use it, nothing happens, all I get is: Query OK, -1 rows affected (0.31 sec) Return...
  9. baden

    Nested CheckBoxList controls ?

    Scenario: [] Category [] Subcat [] Subcat [] Subcat [] Category 2 [] Subcat [] Subcat ... The checkboxes @ the category level are to select all from a given category. Originally, I created a nested repeater, using two queries, linking the tables through Relations()...
  10. baden

    Nested Control with Checkbox select???

    Well, I suppose I will continue to answer my own questions in order to help those who may experience the same issues... but I'm stuck again: Checkboxes - selecting all items in a given category, and retrieving those for database storage on submit. First of all - Success! I've adapted code from...
  11. baden

    Which data control to use and how???

    Hey Gnat, Thanks for the lead. Works great, but now to make it all useful :). Check out my new post @ http://www.tek-tips.com/viewthread.cfm?qid=1183442&page=1 (basically collecting checkbox values & entering them to db, etc) Thanks.
  12. baden

    Nested Control with Checkbox select???

    I need help with the following: The code below (and code-behind) creates a nested Repeater control, that looks like this: Desserts [ ] Cakes [ ] Cookies [ ] Ice Cream [ ] Mousse [ ] Pastries [ ] Pies Dining [ ] African [ ] Chinese [ ] Contemporary [ ]...
  13. baden

    Using "IN" ?

    From a list of checkboxes, I'm going to collect some user preferences, where each box is assigned a number, and the total comma-delimited numbers placed in a UserPref field. Later I'll want to verify the user's pref's, but some numbers exceed 100, thus there will be...
  14. baden

    Which data control to use and how???

    I am planning on using the DataGrid control to allow users to select interest categories. Here's an example of the InterestCategory description & subcategories as done in a simple data-bind. icDescription iscDescription Bar / Night Club Dance Club Bar / Night Club Lounge Bar / Night Club...
  15. baden

    Data Encryption?

    Actually, I was just reading some stuff about .Net 2.0 (really like the Membership API). Anyhow, there is an Asynch. encryption class I'm going to further research when I have time. For now - any further comments about that: Asynch or Synch? Also, hashing with salts is also something I've...
  16. baden

    Data Encryption?

    What is the best way of storing and validating encrypted data ie Passwords? In MySQL I used to use an encryption function using my own salt value, so I could retrieve the data for display. This may be good for phone numbers but not passwords? How do you do this with SQL Server? What's the...
  17. baden

    Table relationships - please explain.

    In the past I have created my tables with PK and FK values, but not defined to the database, that is, I have written my own SQL to display the relationships between tables. In the example below, I have the following tables: Users, InterestCategory, InterestSubCategory, and UserInterestCategory...
  18. baden

    Setting up tables for this problem... (Recommendation?)

    I'm creating an application that will track user's interests. Apart from the regular user-related info, we will track Music and Restaurant interests. I was thinking of creating a separate table for each, ie: Music will contain: hip-hop, jazz, country, rock, r&b, etc... Restaurant will contain...
  19. baden

    How to update text in a control???

    Yeah, that's what I figured... simply done by creating a Javascript function inside the control, then calling it from the aspx: <A href="javascript: setCellText('Check out this updated message');">Change Message</A>
  20. baden

    How to update text in a control???

    Oh... I have tried it with creating a property and updating that, ie: <uc1:UCImageButton texttoupdate="This is some new text" id="UCImageButton1" runat="server"></uc1:UCImageButton> I could change texttoupdate to read a Request.QueryString value based on the button pressed, however, that...

Part and Inventory Search

Back
Top