Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
Y

YiXiang_89

@YiXiang_89
About
Posts
42
Topics
24
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Question about Session
    Y YiXiang_89

    it state: Object reference not set to an instance of an object.

    C# question

  • Question about Session
    Y YiXiang_89

    Hi all, txt_name.Text = (string)Session["Product_Name"]; if is a integer. . . . How do i type it? txt_number.Text = Thank You

    C# question

  • how do i delete a xml file ?
    Y YiXiang_89

    Hi all How do i delete a temporary html file if i store a xml file in C:\temp using C# or my xml file is: testing.xml How do i delete it ? Thank You

    XML / XSL question csharp html testing beta-testing

  • How do i delete a file
    Y YiXiang_89

    Hi all How do i delete a temporary html file if i store a html file in C:\temp or my html file is: testing.html How do i delete it ? Thank You

    C# question html testing beta-testing

  • how do i read the specific tag ?
    Y YiXiang_89

    hi all This is to read the tag line by line. using System.Xml; ... ... ... XmlTextReader reader = new XmlTextReader ("reader.xml"); while (reader.Read()) { switch (reader.NodeType) { case XmlNodeType.Element: // The node is an element. Console.Write("<" + reader.Name); Console.WriteLine(">"); break; case XmlNodeType.Text: //Display the text in each element. Console.WriteLine (reader.Value); break; case XmlNodeType.EndElement: //Display the end of the element. Console.Write("</" + reader.Name); Console.WriteLine(">"); break; } } Console.ReadLine(); How do i read the specific tag if i just want to read all the tag that have this < big > tag? thank you

    XML / XSL question xml

  • how to read the specific tag [modified]
    Y YiXiang_89

    hi all This is to read the tag line by line. using System.Xml; ... ... ... XmlTextReader reader = new XmlTextReader ("reader.xml"); while (reader.Read()) { switch (reader.NodeType) { case XmlNodeType.Element: // The node is an element. Console.Write("<" + reader.Name); Console.WriteLine(">"); break; case XmlNodeType.Text: //Display the text in each element. Console.WriteLine (reader.Value); break; case XmlNodeType.EndElement: //Display the end of the element. Console.Write("</" + reader.Name); Console.WriteLine(">"); break; } } Console.ReadLine(); How do i read the specific tag if i just want to read all the tag that have this < big > tag? thank you

    modified on Monday, April 13, 2009 3:36 AM

    C# question xml tutorial

  • Question about HTML tag C#
    Y YiXiang_89

    Hi all, How do i able to Read the html tag And after that, i can chage the html tag content? How do i read all the tag that contain with

    How are you?

    How can i replace the "How are you? to other type of text ? like "GFHSDFGR" (junk word)? Thank You

    C# question csharp html

  • Read all occurances of a specific tag out of an HTML file
    Y YiXiang_89

    U say Easy way is to read each character and check it is the expected one. If yes, start reading from there. Other way is to read the whole file and use regular expression to find

    So what is the coding to check if it is the expected one? Thank You

    C# tutorial question html

  • Read all occurances of a specific tag out of an HTML file
    Y YiXiang_89

    How to type out the code? =X Thank You

    C# tutorial question html

  • Read all occurances of a specific tag out of an HTML file
    Y YiXiang_89

    Hi all How to use streamreader class to read all occurances of a specific tag out of an HTML file Example i want to read this tag << p >> onwards

    This is some text in a paragraph.

    How do i able to capture p ? Thank You

    C# tutorial question html

  • Where can i download iTextSharp.dll (version 4.0.6.0)
    Y YiXiang_89

    i tried................................ but cant find tried google, msn,yahoo.... cause i am using iTextSharp.dll (version 4.1.2.0) i want to down grade it X|

    C# question announcement

  • where can i download iTextSharp.dll
    Y YiXiang_89

    hi all, Anyone know where can i download iTextSharp.dll (version 4.0.6.0) ?? Thank You

    IT & Infrastructure question announcement

  • where can i download iTextSharp.dll (version 4.0.6.0
    Y YiXiang_89

    hi all, Anyone know where can i download iTextSharp.dll (version 4.0.6.0) ?? Thank You

    Hardware & Devices question announcement

  • Where can i download iTextSharp.dll (version 4.0.6.0)
    Y YiXiang_89

    hi all, Anyone know where can i download iTextSharp.dll (version 4.0.6.0) ?? Thank You

    C# question announcement

  • need help
    Y YiXiang_89

    Hi all, How to call the anchor? I am using ItextSharp.dll My textbox is: webpageurl i want my textpage able to capture this website after i click the button <<OK>> What can i put for >> Using._______._____; to call the anchor ? How to continue from here? Anchor anchor = new Anchor("website"); anchor.setReference("http://www.lowagie.com/iText/"); anchor.setName("website"); Anchor anchor1 = new Anchor("This is an internal link"); anchor1.setName("link1"); Anchor anchor2 = new Anchor("Go to the internal link"); anchor.setReference("#link1"); ThankYou

    C# com help tutorial question

  • How to convert html to pdf using C# tried to do but got error
    Y YiXiang_89

    Hi all, How to convert html to pdf? I am using Itextsharp.dll as my library, cause i found 2 other library but are under License so i cant use it i tried to follow the ExpertPDF method of geting the property but i just cant not get it to work private PdfDocument GetPDFConverter() { int pageWidth = 0; int pageHeight = 0; PdfDocument pdfConverter = new PdfDocument(pageWidth, pageHeight); <-- (The type 'iTextSharp.text.pdf.PdfDocument' has no constructors defined) pdfConverter.GetRight = false; <--error also return pdfConverter; } How can i do it? As i not sure how to read the data from the library Thank You

    C# question csharp html help tutorial

  • need help on C# ITEXT
    Y YiXiang_89

    sorry... posted on wrong forum

    C / C++ / MFC csharp java html data-structures help

  • need help on C# ITEXT - Convert html to pdf
    Y YiXiang_89

    hi all, This is what i found on the web public static PdfFileSpecification fileEmbedded(PdfWriter writer,String filePath,String fileDisplay, byte[] fileStore,int compressionLevel) { Parameters: writer - the PdfWriter filePath - the file path fileDisplay - the file information that is presented to the user fileStore - the byte array with the file. If it is not null compressionLevel - the compression level to be used for compressing the file it takes precedence over filePath } <---- what to type inside? So this help to transfer the html that have been converted to pdf to store inside a file ? does anyone know how to convert html to pdf using C#? Cause the web i find are about java Thank you

    C# csharp java html data-structures help

  • need help on C# ITEXT
    Y YiXiang_89

    where to find? Cause the web i find are about java coding, which i do not know at all lol C# coding are limited... not really know where to find.

    C / C++ / MFC csharp java html data-structures help

  • need help on C# ITEXT
    Y YiXiang_89

    how come? need help on how to convert using C# html - pdf

    C / C++ / MFC csharp java html data-structures help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups