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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aspengal

  1. aspengal

    Rich Text Box adding spaces,format

    Thanks chmohan, That was the very 1st thing I did. As I mentioned, it is very random, sometimes space is added at the end, sometimes inbetween, sometimes in the beginning or the HTML tags gets interchanged. SOmething to do with the RTF control.
  2. aspengal

    Rich Text to HTML

    Thats exactly what I did. Wrote an event and assigned a variable. My problem is the variable is set to true even i dont change the text. the RTF introduces spaces and HTML changes by itself. JurkMonkey, We are unable to change the eidtor at this point. Guess I gotta use the RTF only. Please Help!
  3. aspengal

    Rich Text to HTML

    Thanks for the response, But it does not solve my problem. I basically need to see if there are changes that have been made to the text and depending on it save. Iam basically checking if the text1.textchanged and it is true everytime even though I dont touch the textbox
  4. aspengal

    Rich Text Box adding spaces,format

    I have a Rich Text box. in the Pre Render Event,debug mode, I do a this.text1.text = "abcd" Then the page loads. Then I have button in my page. I click the button and then again do a this.text1.text = "abcd " Why does this space get added? I did not add the space at the end but still it gets...
  5. aspengal

    Display an ICON in a datagrid-Help!

    I would like to display an icon in a cell in a datagrid depending on the cell value. How do I do that? HTML <asp:BoundColumn Visible="true" DataField="FILE_ID" HeaderText="Milestone Type" HeaderStyle-CssClass="bodyTextBold" ItemStyle-CssClass="bodyText" HeaderStyle-Width="2%"...
  6. aspengal

    Date Format in C#-Help

    Thanks JurkMonkey!
  7. aspengal

    Date Format in C#-Help

    I have a datetime variable and I want to pass the current date in this format to this datetime variable datetime variable = 12:24:36 00:12:33 How do i do that?
  8. aspengal

    Double quotes in string-Help!

    Thanks for the post, but it wont work in my case.. Here is my code. ds.Tables[0].Rows[i][0]= "<a href="+ " '\"' " + ds.Tables[0].Rows[i][2] The output I want is : ds.Tables[0].Rows[i][2] has www.hotmail.com. I just want to add a double quotes in front of www and a double quotes after .com...
  9. aspengal

    Double quotes in string-Help!

    ds.tables[0].rows[0][0] = "<a href=" + """ + ds.Tables[0].Rows[0][2] + """ + ">" I do not know whow to have a double quote within a double quote. ds.Tables[0].Rows[0][2] has a value of www.hotmail.com so, my final output should be : <a href = "www.hotmail.com"> Please help!
  10. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    THanks ya'll for the response. I looped through my Dataset that has the data from the XML file, then concatenated the two columns using a <br> in my aspx.cs code. It works for now. Thanks!!!
  11. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    Thanks George, another problem is I have my SQls in an XML file and the xml wont accept <br>. :( Thanks for the help!
  12. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    Thanks a lot. But the problem is I need to display this in my asp grid and I'am unable to do so. Any suggestions? Thanks in advance.
  13. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    select SHORT_DESC+char(13)+char(10)+ LONG_DESC as DESCRIPTION FROM TSTRATA_SEARCH_ENGINE It does not work. What is the syntax to add a carriage return? Please help!!
  14. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    Hi Yall, I want to concatenate 2 columns in my select each column in a different line. This is an example. Column_A has 'How to create a Service Order' Column_b has 'Click on the below link to create an SOR' My Query: select Column_A+Column_b from tableA Desired Result How to create a...
  15. aspengal

    Does the cloned RS be updated when the orginal is?

    Hi All, Thanks all for your response. Appreciate it. I figured out a way to do this. Iam not able to requery the original rs. So, I created temprs from scratch rather than cloning it. Here it is and it works!!!! Have a gr8 week end **** temprs2 = null; temprs2 = new...

Part and Inventory Search

Back
Top