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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Garreth21

  1. Garreth21

    Couple of Dynamic user control problems

    Hey everyone I have a user control called Activity. It has these fields: txtActivityName txtSponsor ucStartDate - day, month, year drop down lists ucEndDate - day, month, year drop down lists Problem One: I have to be able to let the users add as many Activities as they need to. I have this...
  2. Garreth21

    Datagrid issue after 2005 upgrade

    Hi everyone, At work we recently upgraded to 2005. We have an issue of datagrid lines not showing in our datagrids in IE7, They show fine in Firefox. Has anyone come across this problem?
  3. Garreth21

    Totaling up sub task duration

    Yes you were correct. I kind of figured it was my inexperience rather then an error. Thanks for the reply.
  4. Garreth21

    Totaling up sub task duration

    Hi everyone I'm having a problem with sub task durations not being totalled correctly for two of the tasks I have in my project. For Task 1, it looks like a sub task of Task 2 is being included in the calculation. I can't seem to fix this. The rest of the project is fine. I even started another...
  5. Garreth21

    Datagrid filtering

    Hi everyone, I have a datagrid that I need to filter depending on a value in a column. If the column has certain data, then I want to show that row, if it doesn't then I don't want to show it. Can I do the checking for this in the ItemDataBound event or is that too late? If anyone can give me...
  6. Garreth21

    HTML in textbox

    Hi everyone, I'm wondering how to allow html into a textbox without setting validateRequest="false" in the page directive? Is it possible? thanks, in advance.
  7. Garreth21

    DataGrid - Get row data when clicking a button.

    Hi everyone, I have a datagrid for a simple shopping cart app i'm developing. I've got a template Column that contains a asp button which will add the product to the shopping cart. Right now I'm using the OnItemCommand event, and i'm able to display the product num on the screen. However...
  8. Garreth21

    Questions about validators

    Ok, I managed to get the custom validator to only get called once. I removed the line "OnServerValidate="ValidateFirstName_ServerValidate">" that seems to have fixed the problem. If anyone could still tell me why the regular expression validator always displayed the error message not matter if...
  9. Garreth21

    Questions about validators

    Hi everyone. I have a web form that collects shipping information. I have the following fields: First Name, Last Name, Street Address, City, Postal Code, email address. The form needs to accept english and french characters as it's multi-lingual. I'm trying to validate the First Name field. I...
  10. Garreth21

    Creating a ResourceManager, using resx files.

    Hi I'm developing a multi-lingual asp.net web site. I can create a resource manager, but when I use .getString() on it, it fails with this error message: "Could not find any resources appropriate for the specified culture" I've searched all over the place but haven't been able to solve my...
  11. Garreth21

    Multilingual web site advice

    Thanks ca8msm, that looks like what I'm looking for.
  12. Garreth21

    Multilingual web site advice

    Hey I'm developing a online shopping cart. One of the requirements is for English and French(Canadien French) support. The language selection will be stored in a session cookie(better options?). I'm looking for information, tutorials etc or just general design help from people who have created...
  13. Garreth21

    LinkButton/querystring question

    Hi Jim, Thanks for the reply. I had thought of that, but thought it might be better to get the info in one db query rather then two, but that might be the best way to solve my problem. Would you pass the ID in a query string?
  14. Garreth21

    LinkButton/querystring question

    Hi everybody, I have a datagrid that displays products. The product name is a link button. When the link is clicked it opens up a new window to display product details. Right now I append the details to the page link and then use query string on the pop up page to get the information. It...
  15. Garreth21

    Iterating through a table one row at a time.....

    Hi everyone I need to go through a table of data and look at 3 specific columns. If the value is greater then 0 for a given column, I need to make a new record in another table. Here's an example Table 1 ID Total Bonus A Bonus B Bonus TEST1 125.25 500 250 TEST2...

Part and Inventory Search

Back
Top