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 Mike Lewis 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. 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...
  16. elhaix

    Rows affected during import?

    Thanks for the info. MDxer, re: multicasting data, are you saying ti perform new, update, and delete functions separately? The data is coming in as a flat file, so I'll compare the existing data with newly-imported to determine changes. As I'm still new to SSIS, is there an online...
  17. elhaix

    Rows affected during import?

    Hi Gang, I've got an SSIS package that performs a data import. What I'd like is to know how to setup an import package to output a "rows affected" type of report, listing new, updated and deleted records, instead of performing a secondary (programmatic) import, auditing each row. I'm...
  18. elhaix

    Loading the tree control - Parent/Child

    Hi Gang, I'm going to use the .Net tree control to show corp structure - employees, managers, etc. This is not just one branch deep, so, one manager could manage several managers, and those managers may have other managers/employees under them. The data set is basic, with employee IDs and...
  19. elhaix

    Page Inheritance

    ... of course setting up a singleton pattern class will do the trick... but wondering if there is another method. Thanks.
  20. elhaix

    Page Inheritance

    Hi Gang, I normally use base classes for pages (master, page). One thing that bugs me (or just don't yet know how to do) having my content pages access my master page's base class methods. So: MasterPage : MasterBaseClass ContentPage : PageBaseClass So I don't have to duplicate some methods...

Part and Inventory Search

Back
Top