|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
以前很热炒跨平台,主要是由于硅谷挑战微软霸主地位的热情,但是冷静下来后,跨平台往往不是那么一回事。假设你有个软件,所谓的跨平台,你只需要为第二个平台上重新编译一次就行了,这样很难么?asp.net|关头字上面的代码演示了怎样对一段文本举行多关头字查询并高亮显现,给本人做为一个小tip保存下
<%@PageLanguage="C#"Debug="False"Strict="True"Explicit="True"Buffer="True"%>
<%@ImportNamespace="System"%>
<html>
<head>
<title></title>
</head>
<styletype="text/CSS">
.highlight{}{text-decoration:none;font-weight:bold;color:white;background:blue;}
</style>
<bodybgcolor="#FFFFFF"topmargin="0">
<scriptlanguage="C#"runat="server">
voidPage_Load(ObjectSource,EventArgsE)
{
LabelTxt.Text="Givetheproperrespecttohand-coding.Youshouldbothrespectandloathehandwrittencode.Youshould
respectitbecausethereareoftenspecialcasesintegratedintocodethatareoverlookedwithacursoryinspection.When
replacingcodeyou’vewrittenbyhand,youneedtomakesureyouhavethespecialcasesaccountedfor.Youshouldloathe
hand-codebecauseengineeringtimeisextremelyvaluable,andtowasteitonrepetitivetasksisnearlycriminal.Thegoal
ofyourgeneratorshouldalwaysbetooptimizetheorganization’smostvaluableassets.thecreativityandenthusiasmof
theengineeringteam.";
}
publicstringHighlight(stringSearch_Str,stringInputTxt)
{
RegexRegExp=newRegex(Search_Str.Replace("","|").Trim(),RegexOptions.IgnoreCase);
returnRegExp.Replace(InputTxt,newMatchEvaluator(ReplaceKeyWords));
RegExp=null;
}
publicstringReplaceKeyWords(Matchm)
{
return"<spanclass=highlight>"+m.Value+"</span>";
}
publicvoidButtonClick(Objectsernder,System.EventArgse)
{
LabelTxt.Text=Highlight(keywords.Text,LabelTxt.Text);
}
</script>
<H3></H3><BR>
<formrunat="server"method="post">
<asp:TextBoxid="keywords"runat="server"/>
<asp:Buttonid="button"Text="Submit"runat="server"/><br><br>
<asp:Labelid="LabelTxt"runat="server"/>
</form>
</body>
</html>
因为各系统的API不同,代码调用API编写程序就会遇到很多不兼容的地方,比如Java改写后的Serv-U就不能在手机上执行,手机的游戏也不能直接在微机上执行。 |
|