|
|
|
โค๊ตสำหรับตัดคำ ใน asp.net by c#.net..อยากจะทราบว่าถ้าเราต้องการให้แสดงข้อมูลแค่ 50 ตัวอักษร |
|
|
|
|
|
|
|
mystring.Remove(int startindex, int lenght);
|
|
|
|
|
Date :
2010-01-20 19:32:52 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
if (title.Length > 50)
{
try
{
title = title.Substring(0, 50);
title += "...";
}
catch { }
}
lbltitle.Text = title;
ลองดูครับ
|
|
|
|
|
Date :
2010-01-20 22:55:42 |
By :
KohDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
<%@ Page Language="C#" %>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
String strString = "I Love ThaiCreate.Com Version 2009";
this.lblText1.Text = strString.Substring(7,14);
this.lblText2.Text = Left(strString,6);
this.lblText3.Text = Right(strString,4);
this.lblText4.Text = Mid(strString,7,14);
this.lblText5.Text = Mid(strString,6);
}
public String Left(String Param, int Length)
{
String Result = Param.Substring(0, Length);
return Result;
}
public String Right(String Param, int Length)
{
String Result = Param.Substring(Param.Length - Length, Length);
return Result;
}
public String Mid(String Param,int StartIndex, int Length)
{
String Result = Param.Substring(StartIndex, Length);
return Result;
}
public String Mid(String Param,int StartIndex)
{
String Result = Param.Substring(StartIndex);
return Result;
}
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblText1" runat="server"></asp:Label><br />
<asp:Label id="lblText2" runat="server"></asp:Label><br />
<asp:Label id="lblText3" runat="server"></asp:Label><br />
<asp:Label id="lblText4" runat="server"></asp:Label><br />
<asp:Label id="lblText5" runat="server"></asp:Label><br />
</form>
</body>
</html>
|
|
|
|
|
Date :
2010-01-21 06:08:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ แต่ขอรบกวนอีกเรื่องค่ะ
พอดี substring เนี่ยถ้าเกิดจำนวนตัวอักษรมันน้อยกว่า 50 มันก็จะ error เลยเขียนดักมันไว้ว่า
if (int.Parse(lblCompanyDetail.Text) < 50)
แต่มัน error ค่ะ อย่างนี้ต้องทำอย่างไรคะ ถึงจะนับจำนวนได้ว่ามีจำนวนตัวอักษรทั้งหมดกี่ตัว
|
|
|
|
|
Date :
2010-01-21 09:57:31 |
By :
somooo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ เปลี่ยนเป็น .leangth นี่เอง ขอบคุณค่ะ
|
|
|
|
|
Date :
2010-01-21 10:02:15 |
By :
somooo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|