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 wOOdy-Soft 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 mike2312

  1. mike2312

    Temp Tables vs. Real Tables

    James, Thanks for the response. This developer has made it so the tables are named dynamically. So there will be no contention if the SP is run by multiple users.
  2. mike2312

    Temp Tables vs. Real Tables

    Thanks for the reply bhuninghake. That is a good article but not quite what I am looking for. I am looking for something that says that if you use real tables instead of temp tables of table variables for temporary work that it is a very bad thing.
  3. mike2312

    Temp Tables vs. Real Tables

    I am having difficulty explaining to a co-worker why the use of real tables, instead of temporary tables or a table variable, for temporary use (just for a stored procedure) is a bad, bad thing. Could anyone here give me ammo.
  4. mike2312

    Weird error only on Win 2k3 server; Encountered User Breakpoint

    Can someone please tell me why this code (it is a function that has a parameter xmlstring): Dim objWebRequest As HttpWebRequest Dim oRequest As WebRequest objWebRequest = CType(WebRequest.Create("https://anon:6442"), HttpWebRequest) objWebRequest.Method = "POST" objWebRequest.ContentType =...
  5. mike2312

    ADO Multiple Recordsets

    I am not sure where ADO questions should go hopefully here is okay. I have a SP that is returning 5 tables. I am trying to utilize the multiple recordset feature of ADO. Below are some code snippets: My Connection string: Provider=SQLOLEDB;Server=SOMEIPADDRESS;Initial Catalog=DATABASE;User...
  6. mike2312

    Help with If and Then

    Skip, I've a question now. Are you saying that using "" will catch the null values or are you saying to use the "" in addition to the isnull test?
  7. mike2312

    ASP to PDF suggestions

    I have been using activePDF at my job. I find it fairly straight-forward and simple to use and install.
  8. mike2312

    Decision based on percentage

    I am unsure of where to ask this. I guess since the implementation will be in ASP im landing it here. I need some form of percentage based decision making algorithm. What I am going to do is have a set of percentages in a SQL database....based on those percentages there I want to do something...
  9. mike2312

    ASPexec permissions denied

    (shots in the dark) try the IWAM account as well? Throw group "everyone" on the DLL just to see if it will work.
  10. mike2312

    ADO Recordsets in the Global.asa file

    If you would like to NOT use the global/session recordset consider using the getrows() method of a recordset. It can create some fun 2D arrays but you wont have to requery the DB with each page change.
  11. mike2312

    Retrieving &_nbsp; from DB to Textbox

    Wow. I have been pondering how to do that off and on for weeks. I was thinking so much more complicated. Thanx Drex gold star for you!
  12. mike2312

    Retrieving &_nbsp; from DB to Textbox

    Make this a little more clear. I use a textfield to do this, so when I say pulls it back out I mean when then script re-populates the text field with the text containing the &_nbsp; or &_#160;
  13. mike2312

    Retrieving &_nbsp; from DB to Textbox

    I have a script which will take a text file in any text format and input it into the Database. When I use it for HTML or XSL files and use the &_nbsp; or &_#160; it puts them into the DB fine. When it pulls them back out the browser does it job and converts those to spaces. However I would like...
  14. mike2312

    using access database instead of sendmail to collect data

    Wow..I uh need to read posts, or just not reply to them when I am half awake...[dazed] *Points to Tarwn's post* What I posted is not even ASP script runnable.

Part and Inventory Search

Back
Top