09 2012 档案

摘要:createFUNCTION [dbo].[SplitToTable]( @SplitString nvarchar(max), @Separator nvarchar(10)=' ' ) RETURNS @SplitStringsTable TABLE ( [id] int identity(1,1), [value] nvarchar(max))ASBEGIN DECLARE @CurrentIndex int; DECLARE @NextIndex int; DECLARE @ReturnText nvarchar(max); SELECT @CurrentIndex=1 阅读全文
posted @ 2012-09-25 09:51 Star★ 阅读(243) 评论(0) 推荐(0)
摘要:前台http://www.cnblogs.com/TNSSTAR<%@ Page Language="C#" AutoEventWireup="true" EnableEventValidation="false" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication2.WebForm2" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//E 阅读全文
posted @ 2012-09-13 13:13 Star★ 阅读(573) 评论(0) 推荐(0)
摘要:1。<xsl:stylesheet version="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform">2.<xsl:template match="/"> <html></html>3.<xsl:for-each select="catalog/cd">4 <xsl:sort select="artist"/>5. <xsl:if test="pric 阅读全文
posted @ 2012-09-11 15:37 Star★ 阅读(194) 评论(0) 推荐(0)
摘要:<?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/"> <html> <body> <h2>My CD Collection</h2> <table border=&quo 阅读全文
posted @ 2012-09-11 15:17 Star★ 阅读(161) 评论(0) 推荐(0)
摘要:沙盒解决方案最大的好处,就是它的部署和管理不需要服务器场管理员的参与。网站集管理员可以打开“网站设置 - 解决方案”页面,就能直接上载沙盒解决方案,并对它们进行激活、停用等操作。 阅读全文
posted @ 2012-09-05 14:41 Star★ 阅读(251) 评论(0) 推荐(0)