主頁 > 知識(shí)庫 > asp.net 保存、修改沒有 runat=server控件的控件值的一個(gè)解決方案

asp.net 保存、修改沒有 runat=server控件的控件值的一個(gè)解決方案

熱門標(biāo)簽:陜西人工外呼系統(tǒng)哪家好 銅川小型外呼系統(tǒng)運(yùn)營(yíng)商 上海楊浦怎么申請(qǐng)申請(qǐng)400電話 海外地圖標(biāo)注門市標(biāo) 浙江外呼系統(tǒng)怎么安裝 山西防封卡電銷卡套餐 地圖標(biāo)注多個(gè)行程 廈門商鋪地圖標(biāo)注 云南外呼電銷機(jī)器人系統(tǒng)

js:

復(fù)制代碼 代碼如下:

function Save()//保存不是服務(wù)端控件的值
{
var 1= document.getElementById('1Box').value;
var 2 = document.getElementById('2Box').value;
var TxtValue = 1 + "■" + 2;
document.getElementById('3).value = TxtValue;
return true;
}
window.onload=function show()
{
var TxtValue = document.getElementById('3).value;
if (TxtValue != "") {
EachValue = new Array();
EachValue = TxtValue.split('■');
document.getElementById('1Box').value = EachValue[0];
document.getElementById('2Box').value = EachValue[1];
}
return true;
}

html:
復(fù)制代碼 代碼如下:

input type="text" id="1Box" class="txt-underline" style="width: 60px;text-align:left " maxlength="10"/>
input type="text" id="2Box" class="txt-underline" style="width: 200px;text-align:left" maxlength="30"/>
input type="hidden" id="3" name="Values" runat="server" />

CS:
復(fù)制代碼 代碼如下:

void LoadData()//頁面加載
{
btnSave.Attributes.Add("onclick", "javascript:Save();");
string[] strTxtValues = new string[2];
strTxtValues[0] = dr["1"].ToString();
strTxtValues[1]=dr["2"].ToString();
string strValues = strTxtValues[0];
for (int i = 1; i strTxtValues.Length; i++)
{
strValues += "■" + strTxtValues[i];
}
this.3.Value = strValues;

private void SaveOrUpdate()//保存、修改
{
string[] strTxtValues = this.3.Value.Split('■');
string 1= strTxtValues[0];
string 2= strTxtValues[1];

您可能感興趣的文章:
  • asp.net DataGrid控件中彈出詳細(xì)信息窗口
  • asp.net實(shí)現(xiàn)刪除DataGrid的記錄時(shí)彈出提示信息
  • asp.net中GridView和DataGrid相同列合并實(shí)現(xiàn)代碼
  • ASP.NET MVC中EasyUI的datagrid跨域調(diào)用實(shí)現(xiàn)代碼
  • ASP.NET MVC使用EasyUI的datagrid多選提交保存教程
  • asp.net DataGrid 中文字符排序的實(shí)現(xiàn)代碼
  • asp.net DataGridView導(dǎo)出到Excel的三個(gè)方法[親測(cè)]
  • 在asp.net中實(shí)現(xiàn)datagrid checkbox 全選的方法
  • 決定何時(shí)使用 DataGrid、DataList 或 Repeater(ASP.NET 技術(shù)文章)
  • asp.Net JS取母板頁控件值的簡(jiǎn)單方法
  • Asp.net清空控件值的方法(可自定義控件類型)
  • ASP.NET中訪問DataGrid中所有控件值的方法

標(biāo)簽:孝感 朔州 信陽 常州 西雙版納 自貢 許昌 萊蕪

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net 保存、修改沒有 runat=server控件的控件值的一個(gè)解決方案》,本文關(guān)鍵詞  asp.net,保存,修改,沒有,runat,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net 保存、修改沒有 runat=server控件的控件值的一個(gè)解決方案》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp.net 保存、修改沒有 runat=server控件的控件值的一個(gè)解決方案的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章