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!

Recent content by elhaix

  1. elhaix

    Integrating Rewards Programs with Credit Card Processing in .NET

    There are several rewards programs that integrate directly with credit cards at participating merchants. I'm looking for some information on the integration process, and would like to know details about the credit card processing workflow as well as the rewards program workflow, as well as any...
  2. elhaix

    Funnel all requests through one file ???

    Using Helicon's ISAPI Rewrite tool I want to filter all *.prod.myhost.com requests to propertyalpha1.prod.myhost.com. The next rule set I want is to translate (*.)\.(*.)\.(*.) to the wame url, grabbing parameters. So to begin with, the subdomain issue: Using the RegExp Test Utility, I...
  3. elhaix

    Embed without using IFrame?

    One solution is to embed an external JS file: index.html: <html> <head> </head> <body> <h1>Testing Embed</h1> <script type="text/javascript" src="jsEmbedTest.js"></script> </body> </html> jsEmbedTest.js: document.write('<h2>Testing this out...</h3><a href="test.html">Click here</a>')...
  4. elhaix

    Embed without using IFrame?

    Hi gang, We've got a reusable html tool, normally referenced on several websites through an IFrame, to follow the workflow through HTML. I'd like to NOT use the IFrame, but still enable these sites to use this tool. This is done in .Net, so I'm looking for some alternate solutions. Thank you.
  5. elhaix

    Translating Incoming Requests

    I'm working on a project where we will create new domain names through a registrar, and set the DNS to our own server. This server will serve up pages from ONE .Net (.aspx) location. The .aspx page will present data appropriate to the incoming URL. For example: www.urlAAA.com ---> some sort...
  6. elhaix

    SSIS w/ SQL Server 2005 and VS2008?

    ... would I have to develop the SQL Server 2005 SSIS package with VS 2005 and just execute it through my 3.5 code in VS 2008?
  7. elhaix

    SSIS w/ SQL Server 2005 and VS2008?

    I've designed SSIS packages with VS 2005 and SQL Server 2005 installed. For my next project, I'm using VS 2008, and installing SQL Server 2005. I've already gone through the install process once, installing the business/integration services options for SQL Server 2005, which to my...
  8. elhaix

    SSIS w/ SQL Server 2005 and VS2008?

    I've designed SSIS packages with VS 2005 and SQL Server 2005 installed. For my next project, I'm using VS 2008, and installing SQL Server 2005. I've already gone through the install process once, installing the business/integration services options for SQL Server 2005, which to my...
  9. elhaix

    GridView events inside a repeater?

    So the last problem I had, where I was trying to reference the gridview contained within the repeater has been solved - that was, trying to access grid properties in a grid event delegate - ie. Grid_RowDataBound. Dim thisUserID = CType(sender...
  10. elhaix

    GridView inside a Repeater?

    The answer lies in sender: GridView gv = (GridView)sender; Dim thisUserID = CType(sender, GridView).DataKeys(e.Row.DataItemIndex).Item("EmployeeUserID") Dim thisEncryptedSalary = CType(sender, GridView).DataKeys(e.Row.DataItemIndex).Item("AnnualSalaryEncrypted") Next...
  11. elhaix

    GridView inside a Repeater?

    Hi All, I'm having an issue with a GridView inside a repeater. I've got the grid successfully bound to the repeater row, so in my test case, I have two grids that show up - one with two rows, the other with one. The issue is that when I'm performing processing on cell data in a given row, it...
  12. elhaix

    Modifying records on import in Data Flow with Script?

    I'm running the value through an encryption algo.
  13. elhaix

    Modifying records on import in Data Flow with Script?

    Hi Gang, During an Excel import Data Flow, I'd like to change the value of an incoming column for each row. To do so, I'd like to run it through a script task which performs some functions and spits out the new cell value. What would be the process for this? I know I can do it in the...
  14. elhaix

    Lookups

    I'm having a bit of trouble with a lookup transformation I'm importing a dataset and looking for new, updated, deleted records by comparing the import table with an existing table. On a lookup transformation, I drag over the UserID (creating the line connection between the user ID fields in...
  15. elhaix

    Rows affected during import?

    Ok, so earlier you said: Do not use the oledb commands to do either your delete or updates. Dump these records to a table and then fire a stored procedure to do the update or delete based upon the output of these flows. I've got an initial import table. I can then do a secondary data import...

Part and Inventory Search

Back
Top