博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
所有下划线替换成文本框并且ID不同
阅读量:5030 次
发布时间:2019-06-12

本文共 1118 字,大约阅读时间需要 3 分钟。

using System;

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text.RegularExpressions;

 

string sAnswer = "";
string[] Answer = Regex.Split(lbQuestion.Text, "_+", RegexOptions.IgnoreCase);
for (int i = 0; i < (Answer.Count() - 1); i++)
{
if (Answer[0] == "")
{
Answer[0] = "<input type=\"text\" id=txtRightAnswer" + 0 + " style=\"background-color:#ceedff; border:none; border-bottom:solid 1px black;\" />";
}
else if (i == (Answer.Count() - 1) && Answer[(Answer.Count() - 1)] == "")
{
Answer[(Answer.Count() - 1)] = "<input type=\"text\" id=txtRightAnswer" + (Answer.Count() - 1) + " style=\"background-color:#ceedff; border:none; border-bottom:solid 1px black;\" />";
}
else
{
Answer[i] += "<input type=\"text\" id=txtRightAnswer" + i + " style=\"background-color:#ceedff;border:none; border-bottom:solid 1px black;\" />";
}
}
for (int j = 0; j < Answer.Length; j++)
{
sAnswer += Answer[j];
}
Control c = ParseControl(sAnswer);
Panel1.Controls.Clear();
Panel1.Controls.Add(c);

转载于:https://www.cnblogs.com/liziqiang/p/3437347.html

你可能感兴趣的文章
HM16.0之帧内模式——xCheckRDCostIntra()函数
查看>>
Jmeter性能测试 入门
查看>>
安卓动画有哪几种?他们的区别?
查看>>
Nodejs学习总结 -Express入门(一)
查看>>
ssh 连接原理及ssh-keygen
查看>>
vs2013编译qt程序后中文出现乱码
查看>>
【转】IOS数据库操作SQLite3使用详解
查看>>
Android官方技术文档翻译——ApplicationId 与 PackageName
查看>>
【转】ButterKnife基本使用--不错
查看>>
【转】VS2012编译出来的程序,在XP上运行,出现“.exe 不是有效的 win32 应用程序” “not a valid win32 application”...
查看>>
函数中关于const关键字使用的注意事项
查看>>
Web项目中的路径问题
查看>>
js随机数的取整
查看>>
十大经典预测算法(六)---集成学习(模型融合算法)
查看>>
用php做一个简单的注册用户功能
查看>>
一款基于css3的3D图片翻页切换特效
查看>>
Feign使用Hystrix无效原因及解决方法
查看>>
Sizeof与Strlen的区别与联系
查看>>
hadoop2.2.0_hbase0.96_zookeeper3.4.5全分布式安装文档下载
查看>>
Flutter 贝塞尔曲线切割
查看>>