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 TouchToneTommy 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: DilipKS
  • Content: Threads
  • Order by date
  1. DilipKS

    updating a Text field with a String having " inside

    UPDATE dbo.SystemExceptions SET OriginalMessage = "<Execution><Account>BZ</Account><SecurityID IDSource="RIC">OML.L</SecurityID></Execution>" WHERE ExcpMsgID=83 how should I make it work ?
  2. DilipKS

    Reading an XML file into a String and updating Database

    Hi I got really one frustrating problem and am struggling with it. I got an XML , I just want to read it in a String and need to insert in Database. But the problem is I tried all ways but whenever I read XML into a String , I get \ inserted before every " . e.g. whereever attrib values r...
  3. DilipKS

    How to remove &quot;\&quot; from a String

    Hi string t10 = "xftag Source=\"L\">500671"; I want to remove "\" from above string and resultant string shld be "xftag Source="L">500671" I have tried many ways but I am not getting the desired output . One of the ways I tried , pls see below string t10 = "xftag Source=\"L\">500671"...
  4. DilipKS

    How to Reomve &quot;\&quot; from a String

    Hi string t10 = "xftag Source=\"L\">500671"; I want to remove "\" from above string and resultant string shld be "xftag Source="L">500671" I have tried many ways but I am not getting the desired output . One of the ways I tried , pls see below string t10 = "xftag Source=\"L\">500671"...
  5. DilipKS

    Text Parameter in Sybase Stored Procedure

    Hi I am facing this problem. On compiling this stored procdure it says "TEXT or IMAGE datatypes are invalid for paramters or local variable" I have OriginalMessage field which containts big XML and its not possible for me to change its datatype from text to some varchar ...any Hope I can...
  6. DilipKS

    Client Machine Name and User Name

    hi am trying to get client machine name and the user name on that machine. Any idea ? I am trying to use - System.Net.Dns.GetHostName() or System.Environment.MachineName but i guess they both gives server name ...not client name For User I am using - System.Environment.UserName but it...
  7. DilipKS

    DataSet - Adding Tables / Appending Records

    Hi I got 4 tables in a DataSet , All 4 tables have same columns ( 2 columns - Field and Value ) . I want to appeand the records of rest 3 tables into 1st table. Any one has idea ?
  8. DilipKS

    Edit/Update in DataGrid - Getting Old Values ????

    Hi I am using DataGrid with two columns, one column is read only having label inside and second column having text box inside. ( am using Template column ). Both columns are bind to data columns ( see the code below ). But the problem am facing is when am updating values in second column i.e...
  9. DilipKS

    Using Microsoft Web Control in ASP .NET - UREGENT

    Hi Anyone used Microsoft Web Browser Control in ASP .NET application ?? I tried to use it in .NET Windows Form and VB , it works fine, But in ASP .NET Webform I am not able to use it. I cant get the object or pointer to Web browser control...
  10. DilipKS

    XML view similar to IE in ASP .NET

    Hi I am developing a web based ASP .NET application using C#. One of the requirements I have that I need to display an XML file in of the TABs ( TAB Control I already done with ). That XML should be displayed in similar way like it gets displayed when you open an XML in IE(Internet...
  11. DilipKS

    Fixing the DataGrid Header

    Hi Does any one has idea how to fix the data grid Header in ASP .NET when you scrool the data grid page. 1 alternate could be that we hide the header of datagri and put labels as header on top of data grid. is it possible ? any property to hide data grid header ?
  12. DilipKS

    DataGrid - Index of the row/column Clicked

    Hi with the DataGrid control in ASP .NET , is there any property we can get the index of row clicked ? If you have standard events like below , you can get it private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { int rowNum =...
  13. DilipKS

    ASP .NET Button Control - Shortcut Keys

    Hi With ASP .NET button control if we specify AccessKey , it works as hotkey. e.g. with a button if we specify AccessKey='C' , on pressing Alt+C the button is clicked. But the problem is , it doesnt show _ (underscore) with the Access Key . Any Idea how to achieve that ? Rgds
  14. DilipKS

    Limitation with &quot;text&quot; field in Sybase

    Hi Am new to Sybase. I am working on a web based ASP .NET application. AM using Sybase as database. I am facing two problems with Text field . 1) I need to populate 1 combo box from distinct values from a table. The query is like - Select distinct(ErrorDescription) from Errrors...

Part and Inventory Search

Back
Top