본문 바로가기

study

변수 공부를 했습니다.

default.aspx.cs
/////////////////////////////////////////////////////////////////////
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Default3 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        int x = 2;
        string a = "<br>";

        Response.Write(x++);
        Response.Write (a) ;
        x = 2;
        Response.Write(++x);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        //정수형 계산식
        int n = 100;
        short s = (short)n;
        Response.Write("short         " + s);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        double pp = (double)n;
        Response.Write("double" + "&nbsp&nbsp&nbsp&nbsp" + pp);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        double z = (double)3 / (double)2;
        Response.Write((double)z);

        Response.Write(a);
        Response.Write(a);
        Response.Write(a);
        //int string 변환

        int aa = 1;
        Response.Write(aa);

        string aaa = aa.ToString();

        Response.Write("int a를 Tostring 이용하여 변환"+"&nbsp&nbsp" + aaa);


        Response.Write("<br>"+"시간 출력해보기");

        Response.Write(DateTime.Now);
        Response.Write("<br>" + "시간 출력해보기");
        DateTime date = Convert.ToDateTime("01/01/2002");
        Response.Write(date.ToString());

 


    }
}



default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body style="font-size:10pt;font-family:Verdana">
    <form id="form1" runat="server">
    <div>
   
    </div>
    </form>
</body>
</html>


'study' 카테고리의 다른 글

data connection  (0) 2010.12.26
QR코드  (0) 2010.12.25
radio button event  (0) 2010.12.25
체크박스  (0) 2010.12.25
공부는 하는데 ㅋ  (0) 2010.12.23