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: *

  • Users: elhaix
  • Content: Threads
  • Order by date
  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?

    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.
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. elhaix

    Adding a vairable to a SSIS Package

    I'm fairly new to SSIS stuff, so looking for some help on adding a variable to a SSIS package. I need to add a variable to my the query that, when the SSIS package is executed, the user is prompted for this variable. Thanks.
  15. elhaix

    Insert from another database table

    I need a TSQL query that reads from a table in another database on another server, and inserts those values into a table on a different database. Thanks.
  16. elhaix

    Netsted Set Model - Permissions?

    Has anyone implemented a nested set model for permissions? ie. Human Resources app. For example, managers can view their own employee's data, but not other managers' or employees' data on a tree. Any links/examples of implementing this? Thanks.
  17. elhaix

    Org Chart Heirarchy / Permissions

    Hey gang, I've got a few ideas on this, but would like to hear some recommendations. I'm going to be creating a web-based app where org-chart based permissions will apply. Thus, a user on trunk A can view all users' information under them, but not above on that trunk, and similarly cannot...
  18. elhaix

    Legit Proxy Server - for SEM - good/bad or just ugly?

    The SEM application we use uses a proxy server. My first red flag on this was “So, has anyone looked into how this affects our clients’ rankings, or positioning?” So far no one can give me an answer. I am well aware of the black-hat tricks...
  19. elhaix

    How to create dynamic linq queries?

    The article found http://blog.bvsoftware.com/post/2008/02/How-to-create-a-Dynamic-LINQ-Query-Programmatically.aspx does a good job of describing the problem - dynamically adding where parameters to Linq queries, based on some text field. I managed to work around this with the following queries...
  20. elhaix

    301 Redirects - programmatically ??

    Hi, Does anyone know if the following code executes as a meta-refresh on the client side, or actually originates on the server? <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"...

Part and Inventory Search

Back
Top