2018年1月9日 星期二
vs2015 未正確載入套件 Crystal Reports Tools Package
----
實在是...
遇到這問題, 第一時間就是google ..結果通通是亂搞一通"瞎搞"
安裝的是 Crystal Report For VS -SP 21 版的 - 要安裝到VS 2015
結果開工具就冒出這些問題,實在浪費時間
也重開機了,說啥重新啟動就可以OK ; 也把VS 設定重設也沒用
最後一招就是"重新安裝"SP 21 的 crystal report 套件 ; 進VS 總算正常看到了
哈! 今晚的時間也耗掉了...= . =!! 明天可以正常繼續進度了
注意:
是"重新安裝" (不是移除後再安裝....[這個我沒試,重安裝就正常了]);希望有相同問題的,試試的我方法吧! 別搞一堆 /setup / reset xxxx 的指令..浪費時間
2018年1月7日 星期日
2018年1月6日 星期六
在UpdatePanel裡使用FileUpload控制項
參考引用:[ASP.NET]在UpdatePanel裡使用FileUpload控制項
---
---
<asp:updatepanel id="UpdatePanel1" runat="server" updatemode="Conditional">
<contenttemplate>
<asp:fileupload id="FileUpload1" runat="server">
<asp:button id="Button1" runat="server" text="Button">
</asp:button></asp:fileupload></contenttemplate>
<triggers>
<asp:postbacktrigger controlid="Button1">
</asp:postbacktrigger></triggers>
</asp:updatepanel>
<div id="BA_AD1" class="Ba_Ad" style="margin: 12px 0 12px 0;"><div id="ba_ad_05371293839500693" class="AdItem Ad_300x250 Float_L Mg_R_1"><div class="AdBox"><ins class="ucfad_async" style="display:inline-block;width:300px;height:250px" data-ad_unit_id="ad-D2333E9DE6B989460D349AD98DE466A4" data-impr="//js1.bloggerads.net/ucFunnelImpression/675286257.RZHoFAia/20081101000220/63650875099/4?Referer=http%3a%2f%2fjiaming0708.pixnet.net%2fblog%2fpost%2f31183423-%5basp.net%5d%25E5%259C%25A8updatepanel%25E8%25A3%25A1%25E4%25BD%25BF%25E7%2594%25A8fileupload%25E6%258E%25A7%25E5%2588%25B6%25E9%25A0%2585" data-ucfad-loaded="done"><div id="ucfadbg_ucfad_NiC2MDmL" style="display: inline-block;"><div id="ucfadimg_ucfad_NiC2MDmL" style="position: relative;"><iframe name="ucfad_NiC2MDmL" id="ucfad_NiC2MDmL" class="ucfad" width="300px" height="250px" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" allowfullscreen="true" style="border: none; overflow: hidden; width: 300px; height: 250px;"></iframe></div></div></ins></div><div class="Tag"><a href="http://www.bloggerads.net" title="BloggerAds 部落格行銷" target="_blank">BloggerAds 部落格行銷</a></div></div><div id="ba_ad_03098541826921881" class="AdItem Ad_300x250 Float_L"><div class="AdBox"><ins class="ucfad_async" style="display:inline-block;width:300px;height:250px" data-ad_unit_id="ad-D2333E9DE6B989460D349AD98DE466A4" data-impr="//js1.bloggerads.net/ucFunnelImpression/675286257.RZHoFAia/20081101000220/63650875099/4?Referer=http%3a%2f%2fjiaming0708.pixnet.net%2fblog%2fpost%2f31183423-%5basp.net%5d%25E5%259C%25A8updatepanel%25E8%25A3%25A1%25E4%25BD%25BF%25E7%2594%25A8fileupload%25E6%258E%25A7%25E5%2588%25B6%25E9%25A0%2585" data-ucfad-loaded="done"><div id="ucfadbg_ucfad_ihNLxHTM" style="display: inline-block;"><div id="ucfadimg_ucfad_ihNLxHTM" style="position: relative;"><iframe name="ucfad_ihNLxHTM" id="ucfad_ihNLxHTM" class="ucfad" width="300px" height="250px" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" allowfullscreen="true" style="border: none; overflow: hidden; width: 300px; height: 250px;"></iframe></div></div></ins></div><div class="Tag"><a href="http://www.bloggerads.net" title="BloggerAds 部落格行銷" target="_blank">BloggerAds 部落格行銷</a></div></div></div>
2018年1月5日 星期五
無法連接到設定的程式開發 Web 伺服器 (vs2015)
vs2015 最近更新後,又開始出現:無法連接到設定的程式開發 Web 伺服器
查看很多細節設定都偷偷修改過
以前 只要刪 .vs 目錄再重新啟動 vs2015 就可正常
現在已不是單純刪 .vs 即可
現作法須:
1.重開機
2.刪 .vs 目錄
3.開啟你的方案
查看很多細節設定都偷偷修改過
以前 只要刪 .vs 目錄再重新啟動 vs2015 就可正常
現在已不是單純刪 .vs 即可
現作法須:
1.重開機
2.刪 .vs 目錄
3.開啟你的方案
2018年1月4日 星期四
2018年1月3日 星期三
asp.net button set textbox text
參考來源: ASP.NET on button click in user control set the value of a textbox in the main page using javascript
---
找好久,原來是要送出 submit
---
找好久,原來是要送出 submit
<script type="text/javascript">
function SetPage(a) {
var txtFld = document.getElementById("<%=PageBox.ClientID%>");
txtFld.value = a;
document.forms[0].submit(); // or document.forms['formname'].submit()
return false;
}
</script>
訂閱:
意見 (Atom)


