ช่วยหน่อยคะ การไหลของข้อมูลโดยการใช้TextBox โดยใช้ >>> asp.net
Code (VB.NET)
<%@ Page Language="C#" Debug="true" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
int intWidth = 0;
int intHeight = 0;
string FileName = null;
intWidth = 400;
intHeight = 200;
FileName = "MyImages/Images.png";
Bitmap objBitmap = new Bitmap(intWidth, intHeight);
Graphics objGraphic = Graphics.FromImage(objBitmap);
//*** Create Images ***//
objGraphic.FillRectangle(Brushes.Maroon, 0, 0, intWidth, intHeight);
//*** Write Text ***//
string strText = "ยินดีต้อนรับ Welcome To www.ThaiCreate.Com";
//*** String ***//
Font objFont = new Font("Tahoma", 10, FontStyle.Italic);
//*** Font Style ***//
PointF objPoint = new PointF(5, intHeight - 20);
//*** Point ***//
SolidBrush objBrushWrite = new SolidBrush(Color.YellowGreen);
//*** Font Color ***//
objGraphic.DrawString(strText, objFont, objBrushWrite, objPoint);
//*** Save As ***//
objBitmap.Save(Server.MapPath(FileName.ToString()), ImageFormat.Png);
//*** Close ***//
objGraphic.Dispose();
//*** Nothing ***//
objBitmap = null;
objGraphic = null;
//*** View Images ***//
this.imgPicture.ImageUrl = FileName;
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Images (System.Drawing)</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Image id="imgPicture" runat="server" />
</form>
</body>
</html>
</form>
Ref : ASP.NET Write Text to Image
Date :
2010-01-31 22:31:54
By :
webmaster
เอ่อ คุณ Mr.Win คงเข้าใจน้องผิดไปนิดน่ะครับ แกคงไปเน้นกับคำนี้ไปหน่ยอ 'อยู่ที่รูปภาพน่ะคะ'
คุณ viewwww คงหมายถึงการใช้ GET POST ใช่ป่ะครับ เขียน web form มารับข้อมูล พอกดปุ่ม submit ก็ให้ข้อมูลที่กรอกไป แสดงในอีก page โดยให้เก็บข้อมูลดังรูป <- ตรงนี้แหละ
ลองดูตัวอย่างจาก like นี้ครับ => ASP.NET control
จากตัวอย่างจะเป็นแสดงด้วยตัว page เดิม ก็เอาไปประยุกต์ใช้เอาครับ
แต่ถ้าอยากให้ได้แบบที่ต้องการจริงๆ ก็เอา link นี้ไปประยุกต์รวม ASP Form method
มาขออย่างเดียว ไม่คิด ก็จะทำอะไรไม่เป็นเลยอ่ะนะครับ ต้องคิดและลองหัด ลองทำด้วยครับ ให้มีความภูมิใจในตัวเองซักนิดเนาะ
Date :
2010-01-31 23:58:22
By :
salapao_codeman
session.content("username")=textbox1.text
อีกหน้า
textboxnewpage1.text = session.content("username")
ตอบตรงกับโจทย์ไหม เนี้ย
Date :
2010-02-01 12:35:52
By :
iskong
ขอบคุงมากน่ะคะ ทุกท่าน
จะลองคิดเองดู จะลองทำดูเดี่ยวมัข้อสงสัยจะแวะมาถามน่ะ
Date :
2010-02-01 15:53:39
By :
pimchanokza
คิดไม่ออก ปวดมองจิ๊ง ง ง
Date :
2010-02-01 16:36:48
By :
pimchanokza
Load balance : Server 01