Custom Bots
We create custom IM bots.
Black Green Blue Red Gold
RSS
  • Home PageHome
  • Customize Your Bot / Hire a Freelancer
  • How to Create a Custom Bot / Bot Making Software
  • IMDB to WordPress
  • Youtube Comment Poster Bot

Posts Tagged ‘Content’

The Content Multiplier

Seo Services 0 Comment »


The contents of multiplier is developed an IT strategy and marketing from the makers of The World Entrepreneur Success Training Program, marketer quality t SEO and keyword optimized to create unique content that search engines love Let Tested

The Content Multiplier


December 17th, 2011  
Tags: Content, Multiplier



Print ListView content with JavaScript

Codes & Scripts 0 Comment »

i am having a listview in my page which have one column of text.
how to print listview control content using javascript?

Update:

in my web page there is a listview to display set of questions. And alsoa print button to print this questions. How to write a print functionality to this button to print only the questions available in the listview.


December 12th, 2011  
Tags: Content, JavaScript, ListView, Print



JS-based diff / patch f? R HTML / XML content type

Codes & Scripts 0 Comment »

I’ve been working for a while on an application that has collaborative editing of plain-text content. I have always had it in the back-burner to add simple rich-text support (namely: bold, italic, underline, bulleted and numbered lists), but have not been able to find an algorithm that is written in javascript.

I know that the google hosted diff-match-patch library has some suggestions for structured content, but I was hoping to find something that has already been written (yeah, I know, sounds lazy).

I have found one JS diff library, jsdifflib, but I’m unsure if it supports structured content (and it also doesn’t have a patch library, which to me almost seems more important with structured content then the diff library, or is it?) DaisyDiff looks nice, but of course, there is no JS version.


October 25th, 2011  
Tags: Content, diff, HTML, JSbased, patch, Type



Having trouble spliting the content of a node in XML if the contents are empty

Codes & Scripts 0 Comment »

Give the following XML I am trying to split the contents of the “extra” node into four parts by the | delimiter and return the four parts in the response as chdspt(0), chdspt(1), chdspt(2) and chdspt(3). The problem I seem to have is if the XML loaded is missing anything inside the “extra” node then the whole script fails with a 500 error.

<Export>
    <SAVED_EXPORT>
        <id>00-6189</id>
        <title>00-6189 Start Mech Switch</title>
        <price>5.46 USD</price>
        <extra>Male|Adult|Black|medium</extra>
    </SAVED_EXPORT>
    <SAVED_EXPORT>
        <id>00-6190</id>
        <title>00-6190 Start Mech Switch</title>
        <price>5.46 USD</price>
        <extra></extra>
    </SAVED_EXPORT>
</Export>

Note that I removed a lot of the sibling nodes from the XML above as it is too much to post and should be unnecessary for the question at hand.

Dim xData,xNewDoc,xmldataout,xmldataout2,title,description,link,gpc,chd,chdspt

url = "http://thesite.com/v/myxml.xml"
Set xData = Server.CreateObject("Microsoft.XMLHTTP")
xData.Open "get", url, False
xData.Send
Set xNewDoc = xData.responseXML 'ResponseXml returns DOMDocument object

For Each x In xNewDoc.documentElement.selectNodes(".//SAVED_EXPORT")

    Dim productid: Set productid = x.selectSingleNode("id")
    Dim pt: Set pt = x.selectSingleNode("title")
    Dim pds: Set pds = x.selectSingleNode("striphtml-description")
    Dim pl: Set pl = x.selectSingleNode("link")
    Dim pe: Set pe = x.selectSingleNode("product_type")
    Dim pri: Set pri = x.selectSingleNode("price")
    Dim psp: Set psp = x.selectSingleNode("sale_price")
    Dim pbr: Set pbr = x.selectSingleNode("brand")
    Dim pcn: Set pcn = x.selectSingleNode("condition")
    Dim pex: Set pex = x.selectSingleNode("expiration_date")
    Dim pwe: Set pwe = x.selectSingleNode("weight")
    Dim ppn: Set ppn = x.selectSingleNode("id")
    Dim pil: Set pil = x.selectSingleNode("image_link")
    Dim pav: Set pav = x.selectSingleNode("availability")
    Dim ppi: Set ppi = x.selectSingleNode("upc")
    Dim pch: Set pch = x.selectSingleNode("extra")

    title=Replace(pt.text,"&","&amp;")
    title=Replace(title,"<","&lt;")
    title=Replace(title,">","&gt;")

    description=Replace(pds.text,"&","&amp;")
    description=Replace(description,"<","&lt;")
    description=Replace(description,">","&gt;")

    link=Replace(pl.text,"&","&amp;")
    link=Replace(link,"<","&lt;")
    link=Replace(link,">","&gt;")

    gpc=Replace(pri.text,"&","&amp;")
    gpc=Replace(gpc,"<","&lt;")
    gpc=Replace(gpc,">","&gt;")

    chd = pch.text
    chdspt = split(chd, "|")    

xmldataout= "<item><g:id>" & productid.text & "</g:id>" & "<title>" & title & "</title>"
& "<description>" & description & "</description>" & "<link>" & link & "</link>"
& "<g:google_product_category>" & gpc & "</g:google_product_category>" & "<g:price>" & pri.text & "</g:price>" & "<g:sale_price>" & psp.text & "</g:sale_price>"
& "<g:brand>" & pbr.text & "</g:brand>" & "<g:condition>" & pcn.text & "</g:condition>"
& "<g:expiration_date>" & pex.text & "</g:expiration_date>" & "<g:shipping_weight>" & pwe.text & "</g:shipping_weight>" & "<g:mpn>" & ppn.text & "</g:mpn>"
& "<g:image_link>" & pil.text & "</g:image_link>" & "<g:availability>" & pav.text & "</g:availability>" & "<g:gtin>" & ppi.text & "</g:gtin>"
& "<g:gender>" & chdspt(0) &  "</g:gender>" & "<g:age_group>" & chdspt(1) & "</g:age_group>" & "<g:color>" & chdspt(2) & "</g:color>"
& "<g:size>" & chdspt(3) & "</g:size>  </item>" 

xmldataout2=xmldataout2+xmldataout
Next

Response.ContentType = "text/xml"
Response.Write("<?xml version='1.0' encoding='UTF-8'?><rss version='2.0' xmlns:g='http://base.google.com/ns/1.0'><channel><title>store</title><link>http://www.thesite.com</link><description>This is a sample feed</description>" & xmldataout2 & "</channel></rss>")

Set xNewDoc = Nothing
Set xData = Nothing

October 21st, 2011  
Tags: Content, contents, empty, Having, node, spliting, trouble



Rescale p + Content Slider with JS (jQuery)

Codes & Scripts 0 Comment »

Hello Guru’s,

I hope someone can help me with the following.

I have a div on a page, with content (images, text), I want to rescale it by using a slider.
I have this code sample which allows to rescale, rotate, skew, but I only want to use the rescale option, and use it with a slider…


October 4th, 2011  
Tags: Content, jQuery, Rescale, Slider



The Add new? Gene of new content

Codes & Scripts 0 Comment »

Hello all, New member, First post.I am new to web design, its all going pretty good. xhtml going well, css going well. Php…oh god not well. But I was drawing a very large blank as to how to add content to a website. Let me show you a example.

The Amateur Gourmet – A Funny Food Blog with…


August 4th, 2011  
Tags: Content, Gene



The Add new? Gene of new content

Codes & Scripts 0 Comment »

Hello all, New member, First post.I am new to web design, its all going pretty good. xhtml going well, css going well. Php…oh god not well. But I was drawing a very large blank as to how to add content to a website. Let me show you a example.

The Amateur Gourmet – A Funny Food Blog with…


August 3rd, 2011  
Tags: Content, Gene



As k? You can update the text content without CKEditor JQuery?

Codes & Scripts 0 Comment »

I am using CKEditor for mailbox. After typing the content in the editor, I need to click on send button. After clicking the mail goes, but without the content that I have typed in it.

This is because the CKEditor is not updating the value of content until I select the typed text and perform some operation from the toolbar, like Bold, Italic etc.

I have added a javascript: onclick to the send button and trying to reload the editor or perform some operation from toolbar .

Neither I can use JQuery nor any plugin to solve this. What else can I try for this?


July 11th, 2011  
Tags: CKEditor, Content, jQuery, text., Update, without



Article Marketers – Article Marketing Software for Unique Content

Marketing 0 Comment »


75% Commission – High Conversion Rate – article marketing software ben This Article Marketer urgently embarkation. Helps create unique content with spinnable items “spintax www.. Article Builder. Com / affiliates. Html

Article Marketers - Article Marketing Software to Make Unique Content


April 22nd, 2011  
Tags: Article, Content, marketers., Marketing, Software, unique



English> Korean translation of the site – Web Content Writing Freelance Job

Custom Requests 0 Comment »

Need an English to Korean translation of the following website:

http://www.arizonapharmaceuticals.com/donormyl-base

May need followup work for future edits to the same page.


April 5th, 2011  
Tags: Content, English&gt, Freelance, Korean, Site, Translation, Writing



Previous Entries

Custom Bots Sponsors

  • Categories

    • Codes & Scripts
    • Custom Requests
    • Download
    • Entertainment
    • Free Downloads
    • games-entertainment
    • How To/Articles
    • Marketing
    • Review
    • Seo Services
    • Software
    • Video Tutorial
    • Youtube
  • Recent Posts

    • Media inquiries shows unlike FF or Webkit surgery?
    • Problem with horizontal icemegamenu not
    • PHP Tutorial 7 – Loops and Repetition
    • Como hacer un login con Visual Basic 2010 y SQL Server 2008
    • What’s COCROX?
    • SMS software
    • Java String Permutations and combinations
    • K can not decrease, Space Between empty table rows: Drupal / CkEdit might end?
    • How do I start a business underwear? Scheme
    • Scott Blanchard Clickbump motor bundle
  • Blogroll

    • Rock Kitty
Categories
  • Codes & Scripts
  • Custom Requests
  • Download
  • Entertainment
  • Free Downloads
  • games-entertainment
  • How To/Articles
  • Marketing
  • Review
  • Seo Services
  • Software
  • Video Tutorial
  • Youtube
About Me

Write about yourseft, This is just a sample: Welcome to iSoftwareReviews where you can find reviews, ratings, comparisons about variety of computer software programs.

Hi, my name ChanDara and I am a software programmer, web design and development, graphics designer, software trainer, software consultant. And I have worked in IT for more than... Read more

Free Wordpress Themes | Copyright © 2012 Custom Bots All Rights Reserved XHTML CSS THEME by I SOFTWARE REVIEWS