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 Chriss Miller 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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()...
  5. 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 [ ]...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. baden

    How to update text in a control???

    This clarifies a previous question I had: Here's the situation: I have a control that I load on a page that has 3 LinkButton links. What I want to do is change the text that is displayed in the control, based on which link is pressed: ie: Link 1: "This is link 1" Link 2: "This is Link 2"...
  12. baden

    Sending Parameters to Custom Control

    I have created a custom control that has a label who's text is to be changed dynamically when it is used on a page. The calling page has twoHyperLink Controls: <asp:HyperLink id="campaign1" runat="server">Sports Bar</asp:HyperLink> <asp:HyperLink id="campaign2" runat="server">Drink...
  13. baden

    Sessions and user Logins

    I'm building a web app where users will have to login, but there are also public pages. Thus, I've defined the user-specific pages in the Web.config file as follows: . . . <authentication mode="Forms"> <forms loginUrl="index.aspx" protection="All" timeout="10" path="/" />...
  14. baden

    ValidationSummary Controls - how to omit for 'logout'?!

    On A login page I have two fields - userID and pw for a user to enter, with a popup validation summary that works fine when the user doesn't enter anything into either field. I have a linkbutton webform object for "Logout" with calls the logout() method in my code-behind class. Problem: when...
  15. baden

    Generating CRUD functions for VBScript

    I've checked MyGeneration CRUD generation tool, which advertises that it can create CRUD (create, read, update, delete) code for VBScript (as well as others). However, you have to write some sort of template for this, and not just point to the db. I've successfully connected it to my MySQL db...
  16. baden

    [?] Getting Refering Address [?]

    I'm sure I've got the concept behind Request.ServerVariables("HTTP_REFERER"), but I need some help. fillform.html: located at http://www.test.com/fillform.html formprocessor.asp located at http://www.receiver.com/formprocessor.asp User fills out the form located at fillform.html, where the...
  17. baden

    Are there Wireless/Mobile Events in California in August

    Hi, Since HP World has been cancelled (also cancelling the Wireless and Mobile Forum there), I would like to know of any other wireless/mobile technology events happening in LA or San Francisco in August. Can anyone throw some leads my way please? Thank you.
  18. baden

    Are there Wireless/Mobile Events in California in August

    Hi, I realize this isn't the "right" forum for this, however as programmers, I'm sure many of us develop for wireless technologies, so.... Since HP World has been cancelled (also cancelling the Wireless and Mobile Forum there), I would like to know of any other wireless/mobile technology...
  19. baden

    Conferences/Forums/Trade Shows In California in August

    Hi, Since HP World has been cancelled (also cancelling the Wireless and Mobile Forum there), I would like to know of any other wireless/mobile technology events happening in LA or San Francisco in August. Can anyone throw some leads my way please? Thank you.
  20. baden

    Query Help - Count records in 2nd table

    Brain stopped working on this one... Create a result set with all records from table A and counted related records in table B, joined w/ B.FK = A.PK . Thanks.

Part and Inventory Search

Back
Top