User Smxyhd - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T23:19:47Z http://stackoverflow.com/feeds/user/55728 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/453528/how-to-display-a-yes-no-style-message-box-in-web-part-and-get-clients-choice 1 How to display a Yes/No style message box in web part, and get client's choice? Smxyhd 2009-01-17T16:29:53Z 2009-01-21T04:17:17Z <p>I want to show a message box when users trying to do any major operations in my web part. If user choince [Yes], then continue to do sometiing ...[No] for nothing.</p> <p>How can i implements this function in my web part , Sharepoint 2007 ??</p> <p>pls help me ~~ </p> <p>thx </p> http://stackoverflow.com/questions/453528/how-to-display-a-yes-no-style-message-box-in-web-part-and-get-clients-choice/464073#464073 0 Answer by Smxyhd for How to display a Yes/No style message box in web part, and get client's choice? Smxyhd 2009-01-21T04:17:17Z 2009-01-21T04:17:17Z <p>Okay, I'll try it ~~many thanks </p> http://stackoverflow.com/questions/120928/sharepoint-error-cannot-import-web-part/449535#449535 0 Answer by Smxyhd for SharePoint error: "Cannot import Web Part" Smxyhd 2009-01-16T04:48:46Z 2009-01-16T04:48:46Z <p>Now I get a answer for similar problem as below:</p> <p>When I try to added a new wep part to the page, then sharepoint show me a error message, tell me--Can not import my web part, this error message define in .webpart file.</p> <p>So i tried to add some ohter web parts in the page , A strange quesiton appearance, some of them can be added , some of them can not be added.</p> <p>After I traced the code of my web part and anaylsis them, I found the reason:</p> <p>Old Code for web part ProjectInfo(my web part name) is:</p> <pre><code>namespace ProjectInfo .... public class ProjectInfo:System.Web.UI.WebControls.WebParts.Web.part { ..... private SPWeb _spWeb; private SPList _spList; private string _listName = "ProjectDocs"; ...... } public ProjectInfo() { ..... _spWeb = SPContext.Current.Web; //It show me a error here when i trace the code _spList = _spWeb.Lists[_listName]; ..... } </code></pre> <p>Stop now, I thought that it maybe the web page init order problem. AS web page load web part control, constructrue function ProjectInfo() will be running at first. Actually, the web page havn't finish its init. by the time.</p> <p>so i did a test. firstly, I put a good web in the page, it's ok . then, I try to put the web part in the page which can not be added just now. ~~ OK!! It's working ...because the page already init. finished.</p> <p>Ok! I corrected my code:</p> <pre><code> namespace ProjectInfo .... public class ProjectInfo:System.Web.UI.WebControls.WebParts.Web.part { ..... private SPWeb _spWeb; private SPList _spList; private string _listName = "ProjectDocs"; ...... } public ProjectInfo() { ..... //Remove code in constructure function. //_spWeb = SPContext.Current.Web; //It show me a error here when i trace the code //_spList = _spWeb.Lists[_listName]; ..... } protected override void CreateChildControls() { .... base.CreateChildControls(); _spWeb = SPContext.Current.Web; _spList = _spWeb.Lists[_listName]; .... } </code></pre> <p>After I test, the error message did't happed again.. LoL ~~</p> <p>Hope this explain will help you .</p>