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. vikaskalra

    cannot acess SQL database

    Just a thought, can you try this as well - .ConnectionString = "User ID=sa;password=;Data Source=10.125.100.150;Initial Catalog=DSQL_MBC"
  2. vikaskalra

    cannot acess SQL database

    Hi Andrew, Can you share with me the connection string that you are using in the code if any ? Cheers, Vikas
  3. vikaskalra

    SysIndex table of SQL Server does not reflect Current Count

    Hi All, I was wondering if any of you have faced such a problem. I have some big databases which have tables having more that 100,000 records per table. The procedure here is we do lot of bulk inserts via DTS packages. Once this is done, the Sysindex table reflects the exact count or records...
  4. vikaskalra

    cannot acess SQL database

    Hi, I am not to sure if this can be a possiblity. When the SQL Server was setup, what kind of authintication mechanism was selected. What you can do to find this out is over the network try to access the default shares that is \\sql_server_machine_name\C$ (in the start -> run menu) then when...
  5. vikaskalra

    Track Table(s) size over time

    But there is a problem in all the above mentioned cases, as they depend upon using Sysindexes table, which is at times out of sync. In my case where one of my table has 600,000 records, the Sysindexes table shows one number while the Count shows another number... I even tried DBCC DBREINDEX to...
  6. vikaskalra

    Drang and Drop controls from one Container to another.

    hey vb5prgrmr!! That was some excellent stuff!! It worked real cool... and for this you deserve a [medal] Thanks a lot buddy ! Merry Christmas [sunshine] Vikas
  7. vikaskalra

    Drang and Drop controls from one Container to another.

    hi ! Thanks for replying. Tell me do you have any idea as to how to make a command button a part of a Container, I mean say an Image / Picture control etc is there, can you tell me how do I add a Command button to this container ? Simply placing the command button inside a Container (Image /...
  8. vikaskalra

    Drang and Drop controls from one Container to another.

    Hi ! I need some help, one of the applications I am designing, requires me to have two containers. At the starting of the app the First container should contain some Labels/ Command buttons (say 5) in number. The user can drag and drop any of these from the first container to the other. The...
  9. vikaskalra

    Checkbox Control

    Hi ! Thanks for your response. Actually I populate the Checkboxes from the DB too. There is a Table, corresponding to the Records in that Table I get the rows. The Dropdown contains a set of values. When you select a particular value, depending on that value I fetch the rows and show some...
  10. vikaskalra

    Checkbox Control

    Hi !! I have a Checkbox control, which I have placed inside a repeater control. I have to conditionally show it checked / unchecked. It works fine when I select the first set of Values from a dropdown list box. Now when I change the selection in the Dropdown and re-load the page, although...
  11. vikaskalra

    SOAP - removing specific Headers

    Hi! Thanks for your inputs, I will try this thing out. Regards, Vikas
  12. vikaskalra

    SOAP - removing specific Headers

    The complete story is - When a user accesses a page, I retrieve all the information, place it in a Structure, pass this Struct to the Presentation Layer from the Business Logic Layer. The user does some modification and saves it to the DB, in this process I get a New Structure. Now behind the...
  13. vikaskalra

    SOAP - removing specific Headers

    Hi John ! Actually I don't have to extract the Texts of the nodes. I need to Display only the following part as it is with the Tags:- <CustomerID id=&quot;ref-3&quot;>WOLZA</CustomerID> <CompanyName id=&quot;ref-4&quot;>Wolski Zajazd</CompanyName> <ContactName id=&quot;ref-5&quot;>Zbyszek...
  14. vikaskalra

    SOAP - removing specific Headers

    Hi ! I have a SOAP - XML string :- <SOAP-ENV:Envelope xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:SOAP-ENC=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot...
  15. vikaskalra

    Can a Transactional Class be Serialized ?

    Hi ! I am having a problem in declaring a class which is Transactional as also Serializable I know if you want to Serialize a class you need to write something like :- (Syntax in VB.NET) <Serializable()> _ Public Class DataFetch() And a Transactionl Class as :- (Syntax in VB.NET)...
  16. vikaskalra

    Can a Transactional Class be Serialized ?

    Hi ! I am having a problem in declaring a class which is Transactional as also Serializable I know if you want to Serialize a class you need to write something like :- <Serializable()> _ Public Class DataFetch() And a Transactionl Class as :- <Transaction(TransactionOption.Required)> _...
  17. vikaskalra

    Storing Stream type Object in MS SQL Database

    Hi! I have a problem. I have a Stream Object (MemoryStream). I am unable to find a way to store this stream to Database. I know I can convert this stream to string and then store it to the database. But I want to avoid doing so as it will increase a Step in both while storing a record to the...
  18. vikaskalra

    Need some help on Time zone related problem.

    Hi Chiph & Chmohan! Thanks for your posts! It worked fine ! Regards, Vikas
  19. vikaskalra

    Need some help on Time zone related problem.

    Hi All! Need some help on Time zone related problem. I have a .NET (ASP.NET) based app with MS-SQL Server 2000.My site is hosted at a California based server, basically people from two locations will be logging on this site, ones from UK (London) and from anywhere in US. The problem is I...
  20. vikaskalra

    Problem with Session_OnEnd.....Any ideas?

    Hi ! I also faced this problem, but was able to find a solution on IIS 5.0 . Step 1. Pick the Path in session variable when session_onstart is fired, this will be used in the session_onend, as in session_onend, you cannot use server.mappath while in session_onstart you can do so...

Part and Inventory Search

Back
Top