Richard

  • Home
All Posts Links About

Richard

  • Home

An Introduction to AJAX Techniques and Frameworks for ASP.NET

2006-08-24

This article introduces AJAX to ASP.NET developers implementing an example web page in different ways using ASP.NET Atlas, ASP.NET callbacks, Ajax.Net, Anthem.Net and MagicAjax.Net.

Show All >>

Details on CSS changes for IE7

2006-08-23

IEBlog has a good post about CSS changes for IE7 recently. This might be very helpful for changing your site for IE7.

Show All >>

Use ClickOnce for VB6 Program

2006-08-23

I found two good articles on MSDN today. They are talking about using the .NET Framework 2.0 and ClickOnce deployment to automatically update Visual Basic 6.0 applications and COM objects.

Automatically Updating Visual Basic 6 Applications: Part I

Automatic Updating of Visual Basic Applications: Part II

Show All >>

ABA Routing Number Validation

2006-08-22

Just collect for convenience.
ABA Routing Number Validation

Show All >>

Credit Card Number Validation

2006-08-19

I just found an article about the algorithm of validating Credit Card Number.

Show All >>

Sogou Pinyin Input “搜狗”拼音输入法

2006-08-10

最近下载试用了一阵子,效果不错,准确率蛮高的。利用互联网的词频来排序,选词。搜索引擎做这个应该很有优势。值得试用一下。http://www.sogou.com/pinyin/

Show All >>

Call Web Service in VB6

2006-07-21

Dim objDom As Object
Dim objXmlHttp As Object
Dim strRet As String
Dim AsmxUrl As String
Dim SoapActionUrl As String
Dim XmlBody As String

SoapActionUrl = “http://tempuri.org/CalcDist“
XmlBody = “..soap:Envelope…”
AsmxUrl = “http://host/Service1.asmx“

‘ Create objects to DOMDocument and XMLHTTP
Set objDom = CreateObject(“MSXML2.DOMDocument”)
Set objXmlHttp = CreateObject(“MSXML2.XMLHTTP”)

‘ Load XML
objDom.async = False
objDom.loadXML XmlBody

‘ Open the webservice
objXmlHttp.Open “POST”, AsmxUrl, False

‘ Create headings
objXmlHttp.setRequestHeader “Content-Type”, “text/xml; charset=utf-8”
objXmlHttp.setRequestHeader “SOAPAction”, SoapActionUrl

‘ Send XML command
objXmlHttp.send objDom.xml

‘ Get all response text from webservice
strRet = objXmlHttp.responseText

‘ Close object
Set objXmlHttp = Nothing

Show All >>

"Google's problem in China" Or "China's Google Problem"

2006-04-26

Very interesting article:
http://www.nytimes.com/2006/04/23/magazine/23google.html

Show All >>

Tools for debugging web applications

2006-03-22

Fiddler. This program runs as a proxy that logs all HTTP traffic. It supports Internet Explorer and other browsers. Using Fiddler, you can examine each request and response, including headers, cookies, and the message contents.

Web Development Helper. This tool works only with Internet Explorer, but in addition to logging HTTP traffic, it can be used to inspect the HTML DOM, display trace information in a separate window, shut down the application, and decode the page’s view state.

Show All >>

"Atlas" is amazing...

2006-03-22

Microsoft introduce “Atlas,” powerful new framework for building cross–browser, cross–platform AJAX applications in its MIX06 event. Compared to Google, Yahoo, Microsoft is more focusing on the developement tools instead of the applications for Web 2.0. Now this baby is really a powerful tools for asp.net 2.0.

Show All >>

« Prev1…13141516Next »
© 2017 Richard
Hexo Theme Yilia by Litten
  • All Posts
  • Links
  • About

tag:

  • ASPNET
  • DotNetCore
  • VS2015
  • Service Pack 2
  • SQL Server
  • Database Restore
  • SQL Server 2008 R2
  • GitHub
  • Blog
  • Trace Flags
  • SQL Server 2017
  • Linux
  • SQL Server Management Studio
  • SSMS
  • SQL Server 2014

    缺失模块。
    1、请确保node版本大于6.2
    2、在博客根目录(注意不是yilia根目录)执行以下命令:
    npm i hexo-generator-json-content --save

    3、在根目录_config.yml里添加配置:

      jsonContent:
        meta: false
        pages: false
        posts:
          title: true
          date: true
          path: true
          text: false
          raw: false
          content: false
          slug: false
          updated: false
          comments: false
          link: false
          permalink: false
          excerpt: false
          categories: false
          tags: true
    

  • SQL Server Updates
  • SQLBlog.com
  • SQL Server Central
  • My Old Blog Site 1
  • My Old Blog Site 2
  • Unicode Character Map for Windows
  • Dev Tool List (From Scott Hanselman)
Improve daily life using IT techs.