常用小知识总结

简介: 1、在数字统计中,经常会遇到类似67.666666%等的显示问题,其实我们想要得到的是67.

1、在数字统计中,经常会遇到类似67.666666%等的显示问题,其实我们想要得到的是67.67%就可以了,但是我们用

val.ToString("F2")的话,那么100%就会显示成100.00%,不是很好看,怎么办呢?

以下介绍一种方法:

Math.Round(参数列表)方法

//实际得分占标准分比例
    public string getPercent(string text1, string text2)
    {

         double t1,t2,result;

         try

        {
                t1 = double.Parse(text1.Trim().ToString());
                t2 = double.Parse(text2.Trim().ToString());
                result = double.Parse(((t1 / t2) * 100).ToString());
        }

         catch(Exception)

        {

             ClientScript.RegisterClientScriptBlock(GetType(), "", "<script>alert('字符格式不正确');</script>");

              return;

         }

         return Math.Round(result, 2, MidpointRounding.AwayFromZero).ToString()+"%";
    }

 

2、很简单的一个倒计时,进入某个页面的方法

其实重点的就是利用JavaScript里的一个setInterval函数,下面写下该简单的额js脚本

 

<script type="text/javascript">
        var time = 10;
        function count() {
            if (time > 0) {
                document.getElementById("dzsj").innerHTML = time;
                time--;
            }
            else if (time == 0) {
                window.location.href = "CompanyNews/gsxw.aspx";
                clearInterval(timer);
            }
        }
        timer = setInterval('count()', 1000);  //第一个是函数,需用' '引起来,第二个参数是毫秒值(11000
    </script>

 

<div>

        系统将在<span id="dzsj" style="font-weight: bold; color: Red;"></span>秒内跳转到公司新闻页面!

</div>

3、定时页面跳转

ClientScript.RegisterClientScriptBlock(GetType(), "", "<script>alert(/'响应启动成功!/');setTimeout(function(){location.href='URFeedBack.aspx'},1000);  </script>");

 

4、鼠标经过时弹出图片,移出后消失的简单效果代码:

html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>无标题页</title> <mce:script type="text/javascript"><!-- function showImage(obj){ var e = e||window.event; var div = document.getElementById("Image"); var path = obj.innerHTML; div.innerHTML="<img src=""+path+"" mce_src="&quot;+path+&quot;" width='100' height='100'/>"; div.style.display="block"; div.style.top = e.clientY; div.style.left=e.clientX; } function hideImage(){ document.getElementById("Image").style.display="none"; } // --></mce:script></head><body> <form id="form1" runat="server"> <div id="Image" style="position:absolute;width:100px;height:100px;border:1px solid red;display:none;"></div> <div> <asp:DataList ID="DataList1" runat="server"> <HeaderTemplate><table></HeaderTemplate> <ItemTemplate> <tr> <td><span onmouseover="showImage(this)" onmouseout="hideImage()"><%#Eval("Path")%></span></td> <td><img src='<%#Eval("Path") %>' /></td> </tr> </ItemTemplate> <HeaderTemplate></table></HeaderTemplate> </asp:DataList> </div> </form></body></html>后台cs代码protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DataList1.DataSource = getDataTable(); DataList1.DataBind(); } } public DataTable getDataTable() { string[] name = { "images/p002.jpg", "images/p003.jpg", "images/p004.jpg" }; DataTable dt = new DataTable(); dt.Columns.Add("ID", typeof(System.Int32)); dt.Columns.Add("Path", typeof(System.String)); for (int i = 0; i < name.Length; i++) { DataRow row = dt.NewRow(); row[0] = i + 1; row[1] = name[i]; dt.Rows.Add(row); } return dt; }

 

5、地址栏中传递int类型参数,为防止用户非法修改参数的一个解决办法:

int type = 0;if(!int.TryParse(Request.QueryString["type"], out type){ Response.Write("不合法"); return;}

 

6、限时抢购代码

团购倒计时抢购功能(JS代码) JS代码如下:  
<SCRIPT LANGUAGE="JavaScript">  
function _fresh()  
{  
 var endtime=new Date("2010/11/05,12:20:12");  
 var nowtime = new Date();  
 var leftsecond=parseInt((endtime.getTime()-nowtime.getTime())/1000);  
 __d=parseInt(leftsecond/3600/24);  
 __h=parseInt((leftsecond/3600)%24);  
 __m=parseInt((leftsecond/60)%60);  
 __s=parseInt(leftsecond%60);  
 document.getElementById("times").innerHTML=__d+"天 "+__h+"小时"+__m+"分"+__s+"秒";  
 if(leftsecond<=0){  
 document.getElementById("times").innerHTML="抢购已结束";  
 clearInterval(sh);  
 }  
}  
_fresh()  
var sh;  
sh=setInterval(_fresh,1000);  
</SCRIPT>  
Html代码如下:  
<div id="content">  
<h1>限时抢购啦!</h1>  
<p>还剩<span id="times"></span></p>  
  
</div> 

 

7、字符串中中英文字符区分方法:

方法一:

string
 str 
=
 
"
放不开放不下taken in and fetch off
"
;

string
 str1 
=
 
new
 
string
(str.ToList().Where(x 
=>
 ((x 
>=
 
'
A
'
 
&&
 x 
<=
 
'
Z
'
) 
||
 (x 
>=
 
'
a
'
 
&&
 x 
<=
 
'
z
'
))).ToArray());

string
 str2 
=
 str.Replace(str1, 
""
);



方法二:


string rule = " [/u4e00-/u9fa5]+[a-zA-Z//s]+ " ;
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(rule );
string str = " 放不开放不下taken in and fetch off " ;
foreach (Match m in reg.Matches(str))
{
    Console.WriteLine(m.Value);
}
8、WPF中定义TabControl的样式:

<
Window x:Class
=
"
CaseAnalysis_WPF_.Window1
"

        xmlns
=
"
http://schemas.microsoft.com/winfx/2006/xaml/presentation
"

        xmlns:x
=
"
http://schemas.microsoft.com/winfx/2006/xaml
"

        Title
=
"
Window1
"
 Height
=
"
300
"
 Width
=
"
300
"
>


<
Window.Resources
>

     
<
Style TargetType
=
"
{x:Type TabItem}
"
>

            
<
Setter Property
=
"
Template
"
>

                
<
Setter.Value
>

                    
<
ControlTemplate TargetType
=
"
{x:Type TabItem}
"
>

                        
<
Grid
>

                            
<
Border Name
=
"
Border
"
 Background
=
"
LightBlue
"
 BorderBrush
=
"
Black
"
 BorderThickness
=
"
1,1,1,1
"
 CornerRadius
=
"
6,6,0,0
"
>

                                
<
ContentPresenter x:Name
=
"
ContentSite
"
 VerticalAlignment
=
"
Center
"
 HorizontalAlignment
=
"
Center
"
 ContentSource
=
"
Header
"
 Margin
=
"
12,2,12,2
"
/>

                            
</
Border
>

                        
</
Grid
>

                        
<
ControlTemplate.Triggers
>

                            
<
Trigger Property
=
"
IsSelected
"
 Value
=
"
True
"
>

                                
<
Setter TargetName
=
"
Border
"
 Property
=
"
Background
"
 Value
=
"
Red
"
 
/>

                            
</
Trigger
>

                            
<
Trigger Property
=
"
IsSelected
"
 Value
=
"
False
"
>

                                
<
Setter TargetName
=
"
Border
"
 Property
=
"
Background
"
 Value
=
"
LightGray
"
 
/>

                            
</
Trigger
>

                        
</
ControlTemplate.Triggers
>

                    
</
ControlTemplate
>

                
</
Setter.Value
>

            
</
Setter
>

        
</
Style
>

    
</
Window.Resources
>

 
<
Grid
>

  
<
TabControl HorizontalAlignment
=
"
Left
"
 Name
=
"
tabControl1
"
 VerticalAlignment
=
"
Top
"
 Height
=
"
311
"
 Width
=
"
491
"
 TabStripPlacement
=
"
Left
"
 IsTextSearchEnabled
=
"
False
"
 IsManipulationEnabled
=
"
False
"
 Margin
=
"
-2,0,0,0
"
>

            
<
TabItem Name
=
"
tab1
"
 UseLayoutRounding
=
"
False
"
 Background
=
"
#FF41DBF7
"
 Width
=
"
25
"
 Height
=
"
60
"
 BorderBrush
=
"
Black
"
 Margin
=
"
0
"
>

    
</
TabItem
>

        
</
TabControl
>

  
</
Grid
>


</
Window
>

9、后台找前台html控件:
System.Web.UI.HtmlControls.HtmlInputCheckBox cb = row.FindControl("checkboxItem") as System.Web.UI.HtmlControls.HtmlInputCheckBox; 

10、数据绑定类型

(1)将HashTable数据源输出成一个数组,将该数组绑定;

(2)直接绑定,但是要指定DropDownListTextValue分别为HashTableKeyValue。

   例如:

  Hashtable    ht    =    new    Hashtable();       for(int    i=0;    i<10;    i++)       {       ht.Add(i+1,"Item"+1);       }       this.DropDownList1.DataSource    =    ht;       this.DropDownList1.DataTextField    =    "key";       this.DropDownList1.DataValueField    =    "value";            this.DropDownList1.DataBind();

关于DataList与HashTable数据绑定其实也挺简单,只需将HashTable的Key或者Value与控件绑定即可,例如:

  Hashtable ht = new Hashtable();          //对ht赋值    this.DataList1.DataSource = ht.Values;    this.DataList1.DataBind();

获取文件相关属性:

System.IO.FileInfo file = new System.IO.FileInfo(FileName); file.Name;//文件名 file.Length.ToString();//大小", file.LastAccessTime.ToString();//最后访问时间 file.LastWriteTime.ToString();//最后修改时间 file.DirectoryName;//路径  

目录
打赏
0
0
0
0
6
分享
相关文章
对话|企业如何构建更完善的容器供应链安全防护体系
随着云计算和DevOps的兴起,容器技术和自动化在软件开发中扮演着愈发重要的角色,但也带来了新的安全挑战。阿里云针对这些挑战,组织了一场关于云上安全的深度访谈,邀请了内部专家穆寰、匡大虎和黄竹刚,深入探讨了容器安全与软件供应链安全的关系,分析了当前的安全隐患及应对策略,并介绍了阿里云提供的安全解决方案,包括容器镜像服务ACR、容器服务ACK、网格服务ASM等,旨在帮助企业构建涵盖整个软件开发生命周期的安全防护体系。通过加强基础设施安全性、技术创新以及倡导协同安全理念,阿里云致力于与客户共同建设更加安全可靠的软件供应链环境。
150295 32
对话 | ECS如何构筑企业上云的第一道安全防线
随着中小企业加速上云,数据泄露、网络攻击等安全威胁日益严重。阿里云推出深度访谈栏目,汇聚产品技术专家,探讨云上安全问题及应对策略。首期节目聚焦ECS安全性,提出三道防线:数据安全、网络安全和身份认证与权限管理,确保用户在云端的数据主权和业务稳定。此外,阿里云还推出了“ECS 99套餐”,以高性价比提供全面的安全保障,帮助中小企业安全上云。
201962 14
对话 | ECS如何构筑企业上云的第一道安全防线
深入剖析Transformer架构中的多头注意力机制
多头注意力机制(Multi-Head Attention)是Transformer模型中的核心组件,通过并行运行多个独立的注意力机制,捕捉输入序列中不同子空间的语义关联。每个“头”独立处理Query、Key和Value矩阵,经过缩放点积注意力运算后,所有头的输出被拼接并通过线性层融合,最终生成更全面的表示。多头注意力不仅增强了模型对复杂依赖关系的理解,还在自然语言处理任务如机器翻译和阅读理解中表现出色。通过多头自注意力机制,模型在同一序列内部进行多角度的注意力计算,进一步提升了表达能力和泛化性能。
对话|无影如何助力企业构建办公安全防护体系
阿里云无影助力企业构建办公安全防护体系
1253 8
通义灵码2.0全新升级,AI程序员全面开放使用
通义灵码2.0来了,成为全球首个同时上线JetBrains和VSCode的AI 程序员产品!立即下载更新最新插件使用。
1307 24
自注意力机制全解析:从原理到计算细节,一文尽览!
自注意力机制(Self-Attention)最早可追溯至20世纪70年代的神经网络研究,但直到2017年Google Brain团队提出Transformer架构后才广泛应用于深度学习。它通过计算序列内部元素间的相关性,捕捉复杂依赖关系,并支持并行化训练,显著提升了处理长文本和序列数据的能力。相比传统的RNN、LSTM和GRU,自注意力机制在自然语言处理(NLP)、计算机视觉、语音识别及推荐系统等领域展现出卓越性能。其核心步骤包括生成查询(Q)、键(K)和值(V)向量,计算缩放点积注意力得分,应用Softmax归一化,以及加权求和生成输出。自注意力机制提高了模型的表达能力,带来了更精准的服务。
1月更文特别场——寻找用云高手,分享云&AI实践
我们寻找你,用云高手,欢迎分享你的真知灼见!
597 23
1月更文特别场——寻找用云高手,分享云&AI实践