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 SkipVought 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. intrex

    .net 2.0 Encryption Problem

    Hello, I had some very simple encryption methods that I was using in .net 1.1 to encrypt data to a database then decrypt it for use in the application. Now everytime I make a call to decrypt data I get an error "Bad Data" //Byte array for encryption methods private Byte[] KEY_64 = {...
  2. intrex

    SQL Server 2005 Encrypted connection between client and server

    Thanks for the reply. I have come to the same conclusion. Oh well back to the drawing board.
  3. intrex

    SQL Server 2005 Encrypted connection between client and server

    Hello, I am using a hosting service for sql 2005 server and a .net 2.0 web application. I am hoping to be able to send some of the data to the database from a remote location. This data is very sensitive so I need to be able to encrypt the connection between the remote server and the sql...
  4. intrex

    asp.net 2.0 login controls

    Thanks for the reply, It looks like I am going to design everything from scrath. Those controls are not very flexible at all (just as I suspected). Have you found any limitations or annoyances with using master pages. In .net 1.1 I always made user controls for common components on each...
  5. intrex

    asp.net 2.0 login controls

    I am ramping up on a new project with asp.net 2.0. I started designing the security system then realized that microsoft has built all of these login user controls for 2.0. I started diging around and experimenting with them some. I now have a very simple working web security system...
  6. intrex

    Modify Infoview parameter prompt screen

    Thanks for the reply, I had to make more major changes that they CSS would allow. Unfortunately after spending tons of time on this I found out that there is no way to change the code. The javascript (that is running by the .net engine through aspx pages) is calling something like...
  7. intrex

    Modify Infoview parameter prompt screen

    hello, I am having a terrible time trying to make changes to the layout of the parameter prompt screen in InfoView. I am using Crystal Enterprise XI (.net on IIS). I have dug through all of the code and I can't find anywhere that actually generates this page. Is this something that is...
  8. intrex

    xsl problem

    I am having a problem making an xslt template to pase a small xml file I have. I am passing the xslt file one parameter. I want to use this parameter to match a node that has the parameter in it then loop through its children. the xml file looks like this. <HEADER> <LINK...
  9. intrex

    DataGrid change selectedindex with javascript onclick

    I have this all worked out except for one problem. I can't seem to get the html id of the select control that is created from a select command button in a datagrid. I thought that there would be some way to get the html id in the datagrid_itemcreated event but I haven't found a way to do it...
  10. intrex

    DataGrid change selectedindex with javascript onclick

    ok, That didn't work as I expected. I am now trying to make a select command column that I can make invisible (but have it show up in the html). Then I am going to try to make javascript fire the select button for the desired row that was clicked.
  11. intrex

    DataGrid change selectedindex with javascript onclick

    sorry, I am trying to have the row onclick event change the selectedindex. I think I have an ugly solution that might work. I am going to bind the onclick event to each row in the item_databind. The event is going to redirect back to the same page with a querystring of which row sent the...
  12. intrex

    DataGrid change selectedindex with javascript onclick

    Hello, Has anyone been able to use a javascript onclick event to change the selectedindex property of a datagrid?
  13. intrex

    Database integration?

    I think I have this all worked if my database was going to pass a file to a folder on my biztalk server to initiate an orchestration, but I want my database transactions to send data directly to an orchestration. I haven't seen a good example of how sql can make calls to biztalk with data. Is...
  14. intrex

    Database integration?

    Thanks for the demo. This has exactly what I was looking for.
  15. intrex

    Database integration?

    Thanks for the demo. This has exactly what was looking for.
  16. intrex

    Database integration?

    Hello, I am starting on a project to syncronize some data from 2 different mssql databases that have different schemas and field types. In the past my company has been doing this with sql jobs and stored procedures or triggers. There are several problems with this method. From all of...
  17. intrex

    Merge replication question

    After looking deeper into replication, I think that I am going to have to build a custom application, use a DTS package, or use triggers.
  18. intrex

    Merge replication question

    The merge will basiclly touch 2 tables one database and one table on another. The field names from each database are different thought. ex: database(1) table(1) column names: partnum, desc table(2) column names: label, skid database(2) column names: item_id, partdesc...
  19. intrex

    Merge replication question

    Hello, I am fairly new to merge repliction. I am trying to keep data synchronized between 2 databases that have completely different schemas. Is merge replication flexible enough that it will allow me to map fields in each database that I want merged? I have a few other ideas of how to do...
  20. intrex

    DataGrid Paging Question

    I am trying to do something that seems very common sense, but it apears that C# doesn't allow in DataGrids. I would like to have a pager style of <prev (1) next>. The number in the middle of the paging arrows would be the current page that you are on. Am I missing something or is this...

Part and Inventory Search

Back
Top