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 strongm 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. JasonNevin

    Multiple relationships defined to one table

    OK. points taken. Thanks.
  2. JasonNevin

    Multiple relationships defined to one table

    I agree with all your points but still somehow it seems inefficient. Is it in any way inefficient i.e is it detrimental to the performance of the database? Is it even possible to build this model using standard SQL server methodlogy?
  3. JasonNevin

    Multiple relationships defined to one table

    I have a similar problem where I have three tables (tbl_user, tbl_site and tbl_service_centre) each of which has a unique set of fields but also a common set of address fields. Surely the correct way to implement this model would be to have a single address table (tbl_address) with a...
  4. JasonNevin

    Required validator not working when code assigned

    It varies. On some forms there is just one, on others 15.
  5. JasonNevin

    Required validator not working when code assigned

    I have been having a problem getting my required field validators working. When I click on my 'submit' button it posts back and runs the on_click vb .net event but doesn't seem to validate the page. What is even more spooky is that when I remove the on_click events from my code so that the...
  6. JasonNevin

    Divs printing in different position

    ca8msm Excuse my ignorance but am I not using relative positioning?
  7. JasonNevin

    Divs printing in different position

    I am trying to use a repeater to print a multiple form and map data to the form. The form itself is stored as a gif and I'm trying to map to sections on the graphic so that my database fields print in boxes, etc. I have managed to achieve this as far as viewing the data on the screen but when I...
  8. JasonNevin

    PDF Reports

    Excellent. Opened a new window as I required. Only problem was that the redirect I performed after running DownloadFile is not being executed so my users still have to use the back button. Is my method correct? code: DownloadFile(strPDFFile)...
  9. JasonNevin

    PDF Reports

    I have a VB.NET web form that creates a PDF report based on some database results. The form uses response.redirect to display the file it creates. What this means of course is that the user has to use the back button in their browser to return to the page from where they triggered the report...
  10. JasonNevin

    Dropdownlist with duplicate values

    jbenson001 I already have that column. It contains the duplicate values I've spoken about. I could use it to lookup after the postback but it means two DB reads. ca8msm's method only requires one DB read. Thanks.
  11. JasonNevin

    Dropdownlist with duplicate values

    Yeah that'd work. Good man.
  12. JasonNevin

    Dropdownlist with duplicate values

    Sorry, I should have explained a bit more. I'm readling the values from a database table so hard-coding anything is not really an option.
  13. JasonNevin

    Dropdownlist with duplicate values

    Good morning I've just found out that the value field in a DropDownList must be unique. In which case does anybody know of a way of dealing with duplicate values? I want to be able to select from a long list which automatically assigns my selection a score. i.e...
  14. JasonNevin

    Dropdownlist allow free text

    How do I setup a dropdownlist control on a web form that allows both selection of values and free text? I.e My customers can either select a value from the list or type in the value they want (similar to the limittolist property for combo boxes in Access). Thanks.
  15. JasonNevin

    Redirect from module

    I have a VB module with a sub that I'm using to handle errors. I want it redirect to a standard error page.
  16. JasonNevin

    Redirect from module

    Is it possible to redirect to an aspx page from a module? If so which namespace do I need to import to use response.redirect or server.transfer?
  17. JasonNevin

    Email web form

    Thanks checkai. Any suggestions on how to embed photographs?
  18. JasonNevin

    Email web form

    I have a web form. It contains repeater controls and generates a data base report in html. I want to have a button that the user can click on and Email report. I can't find any code anywhere to convert that HTML document into an emailable format (and then Email it). Can anyone suggest a way?
  19. JasonNevin

    Email forms

    I want to give my users the ability to send certain web-forms by Email. I don't want to provide absolute links to the images because the receiver won't necessarily be connected to the web. Does anyone have any code examples for embedding images?
  20. JasonNevin

    Could not copy temporary files to the output directory.

    If I don't close the IDE the file won't delete because its in use. ASP.NET must have permissions because it compiles the first time. Rhys. I haven't tried to replicate this on another machine but will try at some point.

Part and Inventory Search

Back
Top