Asp.net(C\#)데이터 베 이 스 를 읽 고 JS 파일 을 생 성하 여 첫 페이지 그림 전환 효과(데모 원본 다운로드 첨부)

이 사례 는 Asp.net(C\#)이 데이터 베 이 스 를 읽 고 JS 파일 을 생 성하 여 첫 페이지 그림 전환 효 과 를 만 드 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.IO;
public partial class _Default : System.Web.UI.Page
{
  protected void Page_Load(object sender, EventArgs e)
  {
  }
  /// <summary>
  ///           
  /// </summary>
  /// <param name="strTitle">  </param>
  /// <param name="strText">  </param>
  /// <param name="strContent">    </param>
  /// <param name="strAuthor">  </param>
  /// <returns>      </returns>
  public static string WriteFile(string strTitle, string strAuthor, string strDate, string strContent)
  {
    string path = HttpContext.Current.Server.MapPath("~/");
    Encoding code = Encoding.GetEncoding("gb2312");
    //       
    string temp = HttpContext.Current.Server.MapPath("~/Template.html");
    StreamReader sr = null;
    StreamWriter sw = null;
    string str = "";
    try
    {
      sr = new StreamReader(temp, code);
      str = sr.ReadToEnd(); //     
    }
    catch (Exception exp)
    {
      HttpContext.Current.Response.Write(exp.Message);
      HttpContext.Current.Response.End();
      sr.Close();
    }
    Random rd = new Random();
    string strRd = rd.Next(0, 9999).ToString();
    string htmlfilename = DateTime.Now.ToString("yyyyMMddHHmmss") + strRd + ".html";
    DateTime dtNow = DateTime.Now;
    //     
    str = str.Replace("$biaoti", strTitle);
    str = str.Replace("$author", strAuthor);
    str = str.Replace("$datetime", strDate);
    str = str.Replace("$content", strContent);
    //    
    try
    {
      string pathUrl = path + dtNow.Year + "\\" + dtNow.Month + "\\" + dtNow.Day;
      if (!Directory.Exists(pathUrl))
      {
        Directory.CreateDirectory(pathUrl);
      }
      sw = new StreamWriter(pathUrl + "\\" + htmlfilename, false, code);
      sw.Write(str);
      sw.Flush();
    }
    catch (Exception ex)
    {
      HttpContext.Current.Response.Write(ex.Message);
      HttpContext.Current.Response.End();
    }
    finally
    {
      sw.Close();
    }
    return dtNow.Year.ToString() + "/" + dtNow.Month.ToString() + "/" + dtNow.Day.ToString() + "/" + htmlfilename;
  }
  protected void Button1_Click(object sender, EventArgs e)
  {
    WriteFile("title" , "ttttttt" , "2011-09-27", "   <br>");
  }
}

Template.html

<table>
  <tr>
    <td align="center">$biaoti</td>
  </tr>
  <tr>
    <td align="center">  :$author&nbsp;&nbsp;    :$datetime</td>
  </tr>
  <tr>
    <td>$content</td>
  </tr>
</table>

사고:먼저 데이터베이스 에 있 는 그림,링크,설명 문자 등 데 이 터 를 읽 은 다음 에 읽 은 데 이 터 를 첫 페이지 그림 전환 효과 의 JS 파일 에 기록 합 니 다.
아래 코드 는 데이터베이스 에 그림,링크,설명 문자 등 데 이 터 를 추가 하고 JS 파일 을 생 성 합 니 다.

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;
using System.IO;
using System.Text;
public partial class Admin_Slide : System.Web.UI.Page   protected void Page_Load(object sender, EventArgs e)
  {
  }
  protected void Add_Btn_Click(object sender, EventArgs e) //     ,             string imgpath;
    imgpath = "../UpLoadFiles/SlideImg/" + ImgUp.FileName;
    ImgUp.SaveAs(Server.MapPath(imgpath));
    MyOleDb mc = new MyOleDb();
    mc.ConnOpen();
    OleDbCommand cmd = new OleDbCommand("insert into SlideImg(lnk,pic,txt) values ('" + linkarea.Text.ToString() + "','" + imgpath + "','" + imgtitle.Text.ToString() + "');", mc.Conn);
    OleDbDataReader rdr = null;
    rdr = cmd.ExecuteReader();
    mc.ConnClose();
  }
  protected void MJS_Btn_Click(object sender, EventArgs e) //  JS         string jsfile,jstemplete;
    string strlnk, strpic, strtxt;
    strlnk = null;
    strpic = null;
    strtxt = null;
    jsfile = Server.MapPath("~/Js/") + "SlideImg.js";  //JS    
    jstemplete = Server.MapPath("~/Js/") + "JsTemplete.js";  //JS      
    deljs(jsfile); //  JS  
    MyOleDb mc = new MyOleDb();
    mc.ConnOpen();
    OleDbCommand cmd = new OleDbCommand("select top " + Img_Num.Text.ToString() + " * from SlideImg order by id desc", mc.Conn);
    OleDbDataReader rdr = null;
    rdr = cmd.ExecuteReader();
    while (rdr.Read())       strlnk += rdr["lnk"].ToString() + "|";
      strpic += rdr["pic"].ToString() + "|";
      strtxt += rdr["txt"].ToString() + "|";     mc.ConnClose();
    Encoding code = Encoding.GetEncoding("UTF-8");
    StreamReader sr = null;
    StreamWriter sw = null;
    string str = "";
    try       sr = new StreamReader(jstemplete, code);
      str = sr.ReadToEnd(); //          catch (Exception exp)       HttpContext.Current.Response.Write("<script type='text/javascript'>alert('        !')</script>" + exp.Message);
      HttpContext.Current.Response.End();
      sr.Close();
    }
    //          str = str.Replace("$txt$", strtxt);
    str = str.Replace("$pic$", strpic);
    str = str.Replace("$lnk$", strlnk);
    try       sw = new StreamWriter(jsfile, false, code);
      sw.Write(str);
      sw.Flush();     catch (Exception ex)       HttpContext.Current.Response.Write("<script type='text/javascript'>alert('  JS    !')</script>" + ex.Message);
      HttpContext.Current.Response.End();     finally       sw.Flush();
      sw.Close();
    }
  }
//          JS    
  protected void deljs(string jsfile)     if (File.Exists(jsfile))       File.Delete(jsfile);     else       Response.Write("<script type='text/javascript'>alert('                  !')</script>");   }
}

JS 파일 템 플 릿 JSTemplete.js

var focus_width=300;
var focus_height=225;
var text_height=18;
var swf_height = focus_height+text_height;
var pics,links,texts;
texts='$txt$' //       (         )
pics='$pic$' //       (       )
links='$lnk$' //       (    )
pics=pics.substr(0,pics.length-1);
links=links.substr(0,links.length-1);
texts=texts.substr(0,texts.length-1);
var fv="pics="+pics+"&links="+links+"&texts="+texts+"&borderwidth="+focus_width+"&borderheight="+focus_height+"&textheight="+text_height;
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="../Plugin/slide.swf"><param name="quality" value="high"><param name="bgcolor" value="#E5ECF4">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
document.write('<embed src="pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#009900" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');

방법

<script language="javascript" src="js.aspx?classid=2"> </script>

js.aspx 는 js 콘 텐 츠 를 출력 하면 됩 니 다.
그리고 이 abc.aspx 에서 데이터 베 이 스 를 읽 고 document.write 출력 뉴스 문 구 를 생 성 합 니 다.

<%@ Page Language="C#" AutoEventWireup="true" %>
var focus_width="asdasdasdwer";
document.write(focus_width);

전체 인 스 턴 스 코드 는 여 기 를 클릭 하 십시오본 사이트 다운로드
더 많은 asp.net 관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있 습 니 다.,과 을 볼 수 있 습 니 다.
본 고 에서 말 한 것 이 여러분 의 asp.net 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기