Posts

Access Denied Error, After adding the Client Webpart in Site Page

Image
hi all, i have developed 1 sharepoint hosted app client webpart. when deployed app , deployed app site , functionality working expected.(binding values host url , saving items) now, have created sharepoint page in host web , added client web part page.but getting access denied error " script5: access denied. xxx.aspx, line 1 character 1" ( checked ie network options - f12). my app have full control on list , web. please suggest me how resolve issue. thanks in advance. thanks reading...:-) hi, please try add following line of code in page. <webpartpages:allowframing id="allowframing1" runat="server" /> i suggest create sample client webpart reference blog below: how to: build sharepoint-hosted client web part in sharepoint 2013 http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2012/08/01/how-to-build-a-sharepoint-hosted-client-web-part-in-sharepoint-2013.aspx then check whether issue still exists or not. ...

XML DataSet designer is not generating code when tables are updated in the designer.

using visual studio 2008 team system.  box went toast , had reload everything.  moved server 2008 , open project , add columns 1 of datatables in xml dataset designer.  no code-behind updates made.   i'm pulling hair out here people *patiently now* waiting for me , can't deliver. is there piece need install i've missed?  did full install save sql express. thanks!! file read-only or checked cm?  did apply sp1 vs?  work if create dataset in new project?  data source using dataset? michael taylor - 12/2/08 http://p3net.mvps.org Archived Forums V  >  Visual C# IDE

Interface

can use static or private method in interface ? in interface, can have static members, not private. oops - update: you can't have static , can't have private. ~~bonnie dewitt [c# mvp] http://geek-goddess-bonnie.blogspot.com Visual Studio Languages  ,  .NET Framework  >  Visual C#

IE9 - System.ArgumentException at browser history navigation in Silverlight 4 navigation application with custom attached DependencyProperty for Hyperlinkbutton

hello i have strange problem ie9  in silverlight navigation app. the sl app consists of frame in display 4 pages. if call pages in loose order 1 @ time clicking on hyperlinkbutton in sl app , use browser history only move backwards, works fine in generell. but iff then navigate forward in browser history, code ends running code in navigationfailed event , throws system.argumentexception. an evaluation of e.uri when debugging indicates value of uri empty. also, system.argumentexception thrown if navigates through pages of pages in following order: starting point: home page1 (frame.navigate(...) in constructor called mainpage.xaml.vb) action: click on hyperlinkbutton p2-> navigate page2 action: click on button in browser-> navigation page1 action: click on forward button in browser-> navigate page2 action: click on button in browser-> navigationfalied() system.argumentexception (empty uri) the historical data di...

Sales Commission Project

i working on sales commission project , cannot figure out next, appreciated! here have far. using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.threading.tasks; using system.windows.forms; namespace sales_commission {     public partial class frmsalescommission : form     {         public frmsalescommission()         {             initializecomponent();         }         // calculate commission sales agents         private void btncalculate_click(object sender, eventargs e)         {             // declare variables             string lastname;             string firstn...

Origin of threads for compute-only Task graph

the new async support encourages non-blocking patterns enable compose elaborate task dependency graphs based on async/await , taskcompletionsource<t> only. what's best way launch graph proper number of tasks spun up? is case calling 1 of nodes run whole thing on calling thread? or, if instead parallel.invoke on the entire set of non-dependent nodes (where may more prolific others), tpl work-stealing take care of balancing? in compute-only graph work stealing opportunity occur? hi glenn- forgetting new async feature moment, let's using parallel.invoke run tree of processing in parallel, e.g. void process(int depth) {     if (depth <= 0) return;     parallel.invoke(         () => process(depth-1),         () => process(depth-1),         () => dowork()); } that's logical equivalent of: void process...

Biztalk 64 bit adapter pack & 32 bit SAP business suite adapter

hi we use free version of sap business suite in (32 bit adapter) suck data sap. we upgrading our ssis packages 64bit biztalk adapter pack 2010 , have few questions on this. works successfully. question 1: in live sap have function module installed , old 32 bit adapter working. part of migration new 64 bit adapter given new functional module put in sap have put in sap test area. migrate packages, need start moving 1 adapter other , need both function module in sap live system. if case, there conflict on 2 functional modules working 2 different adapters (32 & 64 bit)? if transition period 4 weeks, can these modules still work? question 2: if works cause impact in sap production system @ all? don't want daily data extraction cause impact @ all. please advice. unable find relevant article on this. thanks mani BizTalk Server ...