2007年11月27日 星期二

SQL的 ASCII

在SQL語法,如果想要根據已知英文字母決定下一個字母時,
可以透過 ASCII( ) 函式來完成。ASCII( ) 會回傳字元的ASCII數字,
然後把這數字+1之後,就會是下一個字母。最後利用 CHAR( )函式
把 ASCII 值轉換回字母。

2007年11月9日 星期五

Reporting Service 專案複製時注意事項

當你複製報表專案給其他人時,記得要在資料來源的地方,選擇編輯,重新指定連接資料庫的密碼。因為當你複製專案給其他人之後,資料連結的密碼會被清掉。

Error Msg:
無法完成目前的動作,因為報表伺服器資料庫中,並未儲存執行此報表所需的使用者資料來源認證。 (rsInvalidDataSourceCredentialSetting)

2007年11月8日 星期四

分類區塊隱藏與顯示的控制

需求:每個區塊都有一個CheckBox,當CheckBox被勾選,才顯示該區塊


<input type="checkbox" onclick="cbFunction(this);" id="cb1" name="cb1" runat="server">
T1

<br>

<div id="v1" style="DISPLAY:none">

<table>

<tr>

<td>This is table 1</td>

</tr>

<tr>

<td>

<asp:TextBox id="TextBox1" runat="server"></asp:TextBox>

<asp:Button id="Button1" runat="server" Text="隱藏Table1"></asp:Button></td>

</tr>

</table>

</div>

<br>

<input type="checkbox" onclick="cbFunction(this);" id="cb2" name="cb2" runat="server">
T2

<br>

<div id="v2" style="DISPLAY:none">

<table>

<tr>

<td>This is table 2</td>

</tr>

<tr>

<td>

<asp:TextBox id="TextBox2" runat="server"></asp:TextBox>

<asp:Button id="Button2" runat="server" Text="隱藏Table2"></asp:Button></td>

</tr>

</table>

</div>

</form>

<script>

function cbFunction(object)

{



if(object.id=='cb1')

{

if(object.checked)

{



document.all.v1.style.display='';

}

else

{



document.all.v1.style.display='none';

}

}

if(object.id=='cb2')

{

if(object.checked)

{



document.all.v2.style.display='';

}

else

{



document.all.v2.style.display='none';

}

}

}



cbFunction(document.all.cb1);

cbFunction(document.all.cb2);

</script>