E-mail not working Programming Web Development by preethishivbaba … Not CType(Session("CurUserProfile"), Avantus.WebModules.SystemAdmin.Business.UserMgmt). _ TrainingAdmin_myReminderConfirm_Print Then TDReportGenHeader.Visible =…C:\Inetpub\wwwroot\Avantus\AvantusTMSVB\WebModules\SystemAdmin\SystemAdmin.Data\obj\Debug\Avantus.WebModules.SystemAdmin.Data.dll': The process cannot … xml parsing from java Programming Software Development by vijaygandhi559 …;TD>13</TD> <TD>cn=SystemAdmin,ou=roles,dc=tis,dc=,dc=com,ou=portals,ou… Re: Arabic problem in DOS Hardware and Software Microsoft Windows by DimaYasny … pretty old stuff, you might want to try some arabic systemadmin forums, people there might know more, or might even have… Re: xml parsing from java Programming Software Development by TheGathering I didn't know Java's XML parsers could parse HTML. I'm not sure though that you can use <br/> tags and such with xml though. I'd always thought you'd have to use document.write("<br/>"); with imbedded javascript... I've worked with Java and XMLs before, but never like that. Thanks for the insight :) Re: xml parsing from java Programming Software Development by Ezzaral This HTML is not really a good candidate for processing with an XPath. Typically the information you are working with in XML is meaningfully marked up in a relational manner with data being found in specific elements or attributes. Here your data is just in a generic TD tag. TD does not describe or annotate the data at all - it's just an HTML tag … Re: xml parsing from java Programming Software Development by jwenting and it's certainly not urgent. There's no urgency at all for any of us to help you. Re: xml parsing from java Programming Software Development by ProgrammersTalk There are many ways, but I suggest you to use Java API to do this, read their documentation about XML parsing :) Re: xml parsing from java Programming Software Development by ksaxena I agree with Ezzaral. HTML should no way be a candidate for Java XML parsing, and regEx should be used to achieve what you want. Guess you can get the HTML content in a String or StringBuffer, which you can pass to the code below, to serve your purpose. /** * * @author kapil saxena * */ public static String … Re: xml parsing from java Programming Software Development by masijade Try looking into the HTMLDocument and HTMLEditorKit.Parser Classes.