我想让用户写最多6短信到我的网络应用程序使用TextArea。在这里,每条短信长度是160个字符,我想显示为当前短信号码/6。当用户到达第6短信,然后应用程序不应该允许他们写第7条短信。我已经编写了Javascript来获取剩余的字符数,并将其显示在一个框中。下面是我的代码:
<script type="text/javascript">
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit)
f
我有一个要求发送短信到不同的电话号码从asp.net,我完全不知道发送短信。但通过谷歌,我得到了一段代码:
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
us