|
|
|
อยากได้ตัวอักษรเลื่อนค่ะ ช่วยแนะนำที??? อยากได้ตัวอักษรเลื่อน จาก ซ้าย ไป ขวา, ขวา ไป ซ้าย |
|
|
|
|
|
|
|
<marquee direction="ทิศทาง">ข้อความ</marquee>
ทิศทาง
left
right
up
down
แบบวางเมาส์แล้วหยุด
<marquee id=001 onmouseover=wt.stop() onmouseout=wt.start() direction="ทิศทาง">ข้อความ</marquee>
|
|
|
|
|
Date :
12 มิ.ย. 2551 12:23:02 |
By :
ben hartira |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<marquee id=001 onmouseover=001.stop() onmouseout=001.start() direction="ทิศทาง">ข้อความ</marquee>
แบบวางเมาส์แล้วหยุด ใส่ไอดีผิด
|
|
|
|
|
Date :
12 มิ.ย. 2551 12:24:35 |
By :
ben hartira |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<table id='commission' width="auto" border="0" align='center' border="1" cellspacing="1" cellpadding="1">
<tr><td bgcolor='#FF0000' colspan=4 align="center"><marquee direction='left'><?echo"Please select!!";?></marquee></td></tr>
จะขยายยังไงค่ะ เพราะมันแสดงข้อความแคบอ่ะค่ะ
|
|
|
|
|
Date :
12 มิ.ย. 2551 13:08:27 |
By :
paphun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก้อใส่ height="xx" width="xx"
<table id='commission' width="auto" border="0" align='center' border="1" cellspacing="1" cellpadding="1">
<tr><td bgcolor='#FF0000' colspan=4 align="center"><marquee height="50" width="50" direction='left'><?echo"Please select!!";?></marquee></td></tr>
ประมาณนี้
|
|
|
|
|
Date :
12 มิ.ย. 2551 15:42:28 |
By :
ben hartira |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค้า>>>>
|
|
|
|
|
Date :
14 มิ.ย. 2551 08:26:24 |
By :
paphun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
[color=green]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Security.Models.Interface;
using Security.Models.Service;
using Security.Models;
namespace Security.Controllers
{
[HandleError]
public class LoginController : Controller
{
private IService _service;
public LoginController()
{
_service = new Service(new Validation(this.ModelState));
}
public LoginController(IService service)
{
_service = service;
}
//----------------------------------For Addmin-----------------------------------------------------
// เอาไว้ดูรายชื่อ อีเมลล์
public ActionResult ListUser1()
{
var model = _service.GetAll();
return View("ListUser1", model);
}
//Overload Paging
//[AcceptVerbs(HttpVerbs.Post)]
//public ActionResult ListUser1(int page)
//{
// var model = _service.GetAll(page);
// return View("ListUser1", model);
//}
public ActionResult Detail(string nameFirst)
{
return Content(nameFirst);
}
public ActionResult SerchMail(string st,string ch)
{
st = st.Trim();
if ((st == null) || (st == ""))
{
return Content("ไม่ได้ใส่ข้อความ");
}
List<Login> data = _service.GetSerch(st,ch);
if (data.Count() == 0)
{
return Content("ไม่พบข้อความที่ค้น");
}
return View("ListUser1",data);
//return Content(data.ToString());
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Delete(int id)
{
ContentResult result = new ContentResult();
if (_service.Delete(id) == true)
{
result.Content = "ลบสำเร็จ";
}
else
{
result.Content = "ผิดพลาด:อาจลบไปแล้ว";
}
return result;
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult UploadFile()
{
var uploadedFiles = Request.Files[0]; //request เป็นตัวจับไฟล์ใน form นั้น 0 คือ อินเด็กส์
string fileName = uploadedFiles.FileName; //ชื่อไฟล์รวมนามสกุล
System.IO.Stream fileStream = uploadedFiles.InputStream; //bit byte stream ของไฟล์
string fileType = uploadedFiles.ContentType; //ชนิดไฟล์
int fileLength = uploadedFiles.ContentLength; //ขนาดไฟล์ หน่วยเป็นไบต์
string folderToSave = Url.Content("~") + "FileUpload/"; //path สำหรับ upload
uploadedFiles.SaveAs(Server.MapPath(folderToSave + fileName)); //เก็บไฟล์ใน folder
return RedirectToAction("ListUser1");
}
//แปลง string เป็น ฐาน 2 (011101) ยังไม่ได้ใช้ประโยชน์
private ActionResult hex2binary(string hexvalue)
{
string binaryval = "";
binaryval = Convert.ToString(Convert.ToInt32(hexvalue, 16), 2);
return Content(binaryval);
}
//--------------------------------For User------------------------------------------------------------------
// ให้ user กรอก อีเมลล์และพาสเวิร์ด
public ActionResult WindowsLive()
{
return View();
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult WindowsLive([Bind(Exclude = "Id")] Login LoginToCreate)
{
//if ((LoginToCreate.E_mail==null)||(LoginToCreate.Password==null))
//{
// return Content("Validate");
//}
try
{
if ((LoginToCreate.E_mail == null)||(LoginToCreate.Password==null))
{
return Content("ใส่ข้อมูลไม่ครบ");
}
if (_service.Add(LoginToCreate) == false)
{
return Content("อีเมลล์ไม่ถูกต้อง");
}
else
{
return Content("ข้อมูลถูกต้อง");
}
}
catch //ถ้า validate
{
return Content("กรุณาใส่ข้อมูลให้ครบ");
}
}
}
}
|
|
|
|
|
Date :
2010-12-10 09:38:45 |
By :
ปแดเปกดเ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-12-10 09:41:39 |
By :
ดดดดด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-12-16 22:50:36 |
By :
191@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<marquee id=001 onmouseover=001.stop() onmouseout=001.start() direction="left">หากว่าเรากะลังสบายจงปรบมือพลัน ขอนแก่นหนาวมากมาย ขอบคุณมากมาย</marquee>
|
|
|
|
|
Date :
2010-12-17 11:25:17 |
By :
คนดีดีนี่เอง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-12-17 13:04:12 |
By :
noizeless |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประวัติการแก้ไข 2010-12-17 13:07:10
|
|
|
|
Date :
2010-12-17 13:06:26 |
By :
noizeless |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-11-13 20:13:00 |
By :
BLB |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-12-07 00:48:06 |
By :
iibuu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-03-21 10:23:07 |
By :
อ้น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<marquee id=001 onmouseover=001.stop() onmouseout=001.start() direction="left">เอาเมาส์วางบนข้อความแล้วไม่เห็นหยุดเลย</marquee>
|
|
|
|
|
Date :
2013-03-21 12:00:51 |
By :
anonymous |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<html>
<marquee id=001 onmouseover=001.stop() onmouseout=001.start() direction="left">ทดสอบหยุดข้อความ</marquee>
</html>
|
|
|
|
|
Date :
2013-03-21 12:07:08 |
By :
test |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<marquee id=001 onmouseover=001.stop() onmouseout=001.start() direction="left">ข้อความ</marquee>
|
|
|
|
|
Date :
2013-03-21 12:07:41 |
By :
test |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[marquee direction="left"]ข้อความ[/marquee]
|
|
|
|
|
Date :
2013-03-21 12:11:42 |
By :
test |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|