自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

转载 How to render "asp:Label" as "label" in HTML markup.

<br />Solution: Add AssociatedControlID.<br /> <br />A Label control without AssociatedControlID will be rendered differently when compared to Label control with AssociatedControlID. <br /> <br />A Label control with AssociatedControlID will be rendered

2010-09-11 16:12:00 585

原创 在.net下将saleforce字段值更新为null或空字符串。

<br />        假设我们有一个salesforce object: PhoneNumber__c, 它有一个字符串属性Status__c,如果要将其值(假设原值为“Good”)更改为空,在.net下直接用:<br /> <br />        PhoneNumber__c pn = new PhoneNumber__c();<br />        pn.Status__c = "";<br /> <br />是没有用的,它的值依然是Good。<br /> <br />正确更新办法:<br

2010-08-31 11:41:00 528

原创 About type "double?".

<br />When encountering type "double?", we can use ".value" to get the value.<br /> <br />For instance:<br /> <br />If A is of double? type, you may get "cannot convert double? to string" when you use A.ToString(). To solve this problem, change it to A

2010-08-05 14:21:00 420

原创 ASP.NET Unleashed读书笔记

<br />Chapter 8 Overview of Data Access<br /> <br />1.    The GridView is bound to its data source only when the page is requested for the first time.<br /><br />2.    Every DataBound control included in the ASP.NET 3.5 Framework supports templates with

2010-07-14 10:08:00 319

原创 Formatting Types

<br />http://msdn.microsoft.com/en-us/library/fbxft59x%28VS.71%29.aspx

2010-07-14 09:50:00 324

原创 Solution for issue of number/currency/date/datetime/boolean type not updating in salesforce.

When updating or inserting double type field, there is an boolean attribute needs to be set other than just setting the value of the double type field.clientForUpdate.Usage_Balance__c = Convert.ToDouble(txtBalance.Text.ToString());clientForUpdate.Usage_Bal

2010-07-07 15:54:00 430

原创 Always be aware to check "=" and "=="

<br />Always be aware to check "=" and "==":<br /> <br />document.getElementById('lbl_UpdateInfo').style.display = 'none'<br /> <br />and<br /> <br />document.getElementById('lbl_UpdateInfo').style.display == 'none'

2010-07-07 15:39:00 607

原创 Radiobuttonlist字体无法改变的原因分析

<br />相信肯定有人遇到过想去改变radiobuttonlist的字体,但是通过css却无法改变的问题。 本文指出个中缘由,并提供两种解决办法:<br /> <br />假设我们有一个radiobuttonlist,且这个radiobuttonlist在一个table里:<br /><asp:RadioButtonList ID="rbl_Greeting" runat="server" RepeatDirection="Vertical" RepeatLayout=Table CellPadding=

2010-07-07 15:26:00 2135

原创 JavaScript + CSS 实现更新后提示

HTML:Put the following JavaScript code in the section:

2010-07-07 14:41:00 409

原创 第一篇技术日志

<br />      从第一次网站设计到现在,竟然一下子过去快四年了,期间涉猎了网页设计和软件编程的许多Project,经历过非常多的技术难题,也都一一解决了,可惜当时都没有做documentation,现在想起来追悔莫及,很多当时解决了的疑难问题,现在再让我去做,也还是不会,还是免不了一顿google和百度。<br />      现在刚开始工作一个星期,终于下决心要开个博客,把自己工作和学习过程中遇到的难点和重点,以及解决办法都记录下来。

2010-06-30 21:30:00 292

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除