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
G

guiqul163

@guiqul163
About
Posts
188
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How much money can a programmer earn per month at your country and your city?
    G guiqul163

    I hope I can write article with English, but my English is very poor. :( . But I had been create a English blog, but. http://cime63.blogspot.com/ But when I wanna write article with English, I always don't know what I can write. ;P

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com question

  • How much money can a programmer earn per month at your country and your city?
    G guiqul163

    Thank you very much for your reply. That's useful for me. Thanks again.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com question

  • How much money can a programmer earn per month at your country and your city?
    G guiqul163

    thanks for you reply.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com question

  • How much money can a programmer earn per month at your country and your city?
    G guiqul163

    Thank you all do replay for me. I have no time reply every info, but I'll try to best to let you know I got your info, and gvie my thankfulness to you.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com question

  • How much money can a programmer earn per month at your country and your city?
    G guiqul163

    A ordinary programmer can earn how much money per month at your country and your city? Me: Yantai China, 350$/month

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com question

  • Hi guys, can you introduce a English blog to me?
    G guiqul163

    Hi everybody, I'm a Chinese programmer, but now I hope I can create a English blog(like blogger.com), can you introduce a English blog to me? Thanks & best Regards.

    ========================================= Make friends with you all. My Blog, welcome
    ???????,????????

    The Lounge com question

  • Can I post yet?
    G guiqul163

    I'm sure you can.

    ========================================= Make friends with you all. My Blog, welcome
    ???????,????????

    The Lounge php visual-studio com question announcement

  • Are ATM transactions in your country charged?
    G guiqul163

    If you get a card from bank A, and just when you get money from ATM of bank A and in a small area, it's free. China.

    ========================================= Make friends with you all. My Blog, welcome
    ???????,????????

    The Lounge php com business question

  • How to filt some items when transform xml to html with xslt?
    G guiqul163

    Hi guys, I create a xml file like this by program: <condition>disp='1'</conditions> <item> <disp> 1 </disp> <otheritem> f</otheritem> <item> <item> <disp> 2 </disp> <otheritem> w</otheritem> <item> <item> <disp> 3 </disp> <otheritem> w</otheritem> <item> I use xslt to transform this xml file to html. But I don't want to show some items, such as, when disp='1', I don't want to show it to users. In here, the condition is variational. Maybe it's disp!='4', maybe it's otheritem = '53g'. when I show the items with xslt, how to filt these items? I try to add the condition to the xml file, and get it in the xslt. But it can't work normally. Can anyone give me any suggestions? Thanks & regards.

    ========================================= Make friends with you all. My Blog, welcome
    ???????,????????

    XML / XSL xml html com tutorial question

  • Yeah it's cold, but it's nice outside ...
    G guiqul163

    Beautiful! There is no big snow for many years in my hometown.

    ========================================= Make friends with you all. My Blog, welcome
    ???????,????????

    The Lounge com

  • How to sort all data use xslt?
    G guiqul163

    Yes, you are right. Thanks very much for your help.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    XML / XSL xml csharp html com regex

  • How to sort all data use xslt?
    G guiqul163

    First thanks for your reply. But I don't want to get the RecordSet which Myid <5, I want do this: First sorted all RecordSet based the Myid, and get 5 Records as first page. You know, if show 5 RecordSet/page, I need 2 pages to show all RecordSet.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    XML / XSL xml csharp html com regex

  • How to sort all data use xslt?
    G guiqul163

    One page show 4 records. Then the first page should show as follow: 1 w 2 a 3 l 5 z But in fact, the result like this: 1 w 2 a 3 l 9 n <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="SortTest.xsl"?> <Table> <RecordSet Myid="2" title="a">2 a</RecordSet> <RecordSet Myid="1" title="w">1 w</RecordSet> <RecordSet Myid="3" title="l">3 l</RecordSet> <RecordSet Myid="9" title="n">9 n</RecordSet> <RecordSet Myid="7" title="m">7 m</RecordSet> <RecordSet Myid="6" title="k">6 k</RecordSet> <RecordSet Myid="4" title="z">5 z</RecordSet> </Table> <?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="http://dotnet.aspx.cc/" exclude-result-prefixes="msxsl user"> <xsl:output method="html" omit-xml-declaration="yes"/> <xsl:template match="/"> <table width="100%" border="0" cellspacing="2" cellpadding="2"> <xsl:for-each select="./Table/RecordSet[position() < 5]"> <xsl:sort select="./@Myid" data-type="number" order="ascending"/> <tr> <td> <xsl:value-of select="."/> </td> </tr> </xsl:for-each> </table> </xsl:template> </xsl:stylesheet> How to resolve it?

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    XML / XSL xml csharp html com regex

  • How to improve the efficiency when search data from more than 1000000 records?
    G guiqul163

    Hi everyone, My company has a website, use ms sql server. One table has more than 1000000 records. When users search data from this table(such as search records which contain the word "school" in NewsTile field. And the server often occurred deadlock error. How can I improve it? Thanks. P.S. The table has these fields: NewsID NewsTitle NewsContent NewsClickTimes NewsInsertTime

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    ASP.NET question database sql-server com sysadmin

  • 5GB @ free Hotmail account
    G guiqul163

    1G is enough for me.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge question

  • If you can bear my poor English, make friends with me.
    G guiqul163

    barney_parker wrote:

    Can you tell me what "I Love You" is in Chinese?

    That's "我爱你". very easy.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com

  • If you can bear my poor English, make friends with me.
    G guiqul163

    Thanks very much. I can understand now. Thanks for your help.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com

  • If you can bear my poor English, make friends with me.
    G guiqul163

    Yes, I know there are many Chinese(or use Kanji?) in Japanese. But many of them change the meaning and pronunciation.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com

  • If you can bear my poor English, make friends with me.
    G guiqul163

    Now I can understand it. Thanks very much.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com

  • If you can bear my poor English, make friends with me.
    G guiqul163

    Joergen Sigvardsson wrote:

    Maybe I understood 受 too (does it mean receive or get in Chinese?)

    Yes, you are right. And by the way, 中文=汉语, has the same means.

    ========================================= Make friends with you all. My Blog, welcome
    天气常如二三月,花技不断四时春。

    The Lounge com
  • Login

  • Don't have an account? Register

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