Software Development Network Logo
  • Visual FoxPro
  • Game Technologies
  • Microsoft ISV
  • Visual Studio
  • SQL Server
  • .NET Development
  • Visual Basic
  • IE Development
  • Windows Vista
  • VS Team System
  • Smart Devicet
  • Visual C++
  • Audio and Video
  • Windows Forms
  • Visual C#

Software Development Network >> SharePoint Products

SharePoint Products

New Question

Unable to connect ...
How are you gnerating application definitions?
Trouble after B2tr
User Interface Oriented Application Development
A web part that is a consumer and provider at the same time.
ObjectDataSource in a web part?
Learning design patterns
unable to define Content Source Type --> Business Data
Assigning task to a Group??
Anonymoys access question

Top Answerers

Ron L
Paryse
CamPeck
Robert Shurbet
Yassi
waheyluggage
Michael Herman - Parallelspace
lucerias
GarrettM
Smat
Info 3000
Only Title

Answer Questions

  • Corby111 Data Synchronization with Client/Server

    Normally, client/server applications are developed with the client requesting operations on the server (e.g. AddCustomer, ModifyCustomer, DeleteCustomer, DoSomethingWithCustomer, etc). There's usually also a client side cache so lookup and other frequently used data are loaded into the client. Moving towards developing smart clients, the cache is made robust so it handles synchronization of data with particular synchronization strategies, handling offline mode, etc. With the introduction of SQL Express and assuming all future machines will be preinstalled with SQL Express, could we not write the client as though it's a 1-tier application reading/writing straight to the local SQL Express database and somehow configure SQL Express to d ...Show All

  • Murtuza39 How to make breadcrumb display text in root?

    I'm trying to have the SharePoint breadcrumb display text from the root folder. If you copy the default.aspx page to the "Shared Documents" folder, you'll see: HOME > Shared Documents > default However, in the root folder it's missing the text. I'd like to create custom aspx pages in the root folder that show the text so in this example it would be: HOME > default For your sites breadcrumb change the SiteMapProvider to SiteMapProvider="SPContentMapProvider" . This will display the Shared Documents Folder ...Show All

  • AlexU Sharepoint Portal Fixed Width?

    I've had some success applying a .css to the Portal and specifying the fixed width. However, I would like the page to be centered in the browser. Any ideas I'm a newbie when it comes to Portal customisation but I'm trying... Sorry George, it's with regard to Sharepoint Portal 2003 not 2007. Any help would be appreciated. Sorry George, you lost me when you started with 'Publishing Portal site template'. Have you tried creating a site collection with the Publishing Portal site template, or switching to a master page other than default.master (like BlueBand.master) They set a width of the main content of the page, and center that in the br ...Show All

  • justinmagaram failover to backup web service

    We have a failover site to host our web service for a company mobile app if our main site goes down. To implement support for it, I coded something like this: Try ws.Login(username, pwd) Catch ws.Url = Config.GetSetting("backupUrl") ws.Login(username, pwd) End Try See any hazards Thanks. DRP solution is usually a multi-tiered effort - moving to a remote site is usually only done when you have a catastrophy - because of issues like data synchronization and freshness - Even though it depends on your particular business, you would probably find that you cannot synchronize the whole data between the two sites at the same level of synchronization You may still want to add NLB or other clustering solution on you ...Show All

  • martona DOM Reference

    Where can I find a complete reference to the DOM with all of the details about controls and their associated events. Is there an existing reference book Thanks In terms of the .NET framework, I got some interesting links: XML Document Object Model (DOM): http://msdn2.microsoft.com/en-us/library/hf9hbf87.aspx Accessing Attributes in the DOM: http://msdn2.microsoft.com/en-us/library/hk61a712.aspx Reading an XML Document into the DOM: http://msdn2.microsoft.com/en-us/library/azsy1tw2.aspx Hope it helps W3C document Object Model ...Show All

  • PeterVrenken Duplicate Submissions occur if refresh button is clicked

    My code has a custom webpart that submits to the content database. However, if the user manually refreshes the page after the submit button has been clicked but before the pages postbacks a duplicate entry is created. Any ideas on how to resolve this I am using Portal 2003. Any help would be greatly appreciated. This is a regular problem with any html form (nothing to do with sharepoint or .net as it were). One of the things you could try is redirect the user to another page (or even to the same page) using the Page.Response.Redirect method after you save the page. This will *break* the connection to the last post. ...Show All

  • Bonnie M SOA and Banks

    Dear All. What do you think How much SOA is suitable Banking Application Is there any sample or presetation about it In real word, which bank has applied SOA in productiivity How much is extendable SOA Application in a Bank I mean if ISV sold his Bank Application based on SOA, and later Bank's developer may add new Service wtihout ISV's interaction. Thanks in advance. Teymur Dear All. I marked both of your replies as anwer. Really, I know bank has 90 branches, but each branch connects to Center through dial-up connection. They want not to waste much moeny for Communication. This is real world truth. So, what about SOA and that bank Is the communication speed is very important for SOA based solution ...Show All

  • Bassam72 Same file on multiple server (Server Balancing)

    Hi, I'm looking for a system that will copy a newly created file from a specific folder to a bunch of other server on the same network. I have a web site that host videos/images/sounds and it's cheaper to rent an other server than to buy bandwidth (I find that weird). When I upload a video (wmv) on Server 1 I want something to automaticaly copy this video to the other servers (the starting point will always be server 1). That way I can balance the bandwidth on multiple server http://video1.site.com , http://video2.site.com I tought of using ftp (not full proof if something crash), creating my own (can take a long time to have something bug free), mapping drive (coul'nt find how to do it). I'm looking for some suggestion, web si ...Show All

  • Smallmaj Web Service vs. Component

    I'm looking for any recommended articles that discuss the pros/cons of building a web service vs. a component assembly. I'd like to find something that provides some guidelines for choosing one implementation method over another. Does anyone know where I can find an article like this Ah! Thanks for the clarification. The points you've listed above are exactly my concern. Using a local copy (or GAC) version of a dll provides obvious performance benefits, but does not necessarily fit most definitions of SOA. Our SOA will include reusability that is implemented via components as well as services. Consider it a hybrid, if that is more comfortable. Form an architectural or designer perspective, I ...Show All

  • oolon Presentation layer depends on ????

    Hi, I am trying to understand the layering concept with the ASP.NET 2.0 apps. I have a ASP.NET 2.0 Web app which has 3 layers Presentation layer which contains UI elements and Input validation logic Business layer which contains Business Rules, Business Objects and Business Workflow DataTier which contains database tables and stored procedures I understand that each layer is a independent entity and can be considered a blackbox by all other layers. Thus each layer can be built independently of the other layers. But in the above scenario can somebody tell me does the Presentation layer depend on the Business layer only or does it depend on the DataTier as well since there is Input validation involved in the Presenta ...Show All

  • LISA86 ReadOnly Fields in a WebPart

    Hi, this is my first post, and sorry for my awful english... I'm developing two webparts, which work connected, the provider has a GridView (reading the data from a SQL database), and the consumer displays the detail of the selected row in the consumer's gridview... The consumer has a button which saves the displayed information into a sharepoint list... I need to use textbox controls to display the data, but when i set them in readonly, or enabled = false mode, they clear their contents before any event... Here is the code... http://gianni.gellona.googlepages.com/Reclamos.cs.txt bump dratted event sequence ;-) perfect!, now it works pretty well, thank you!!! :D Have you tried leaving the textboxes enabled in Cre ...Show All

  • NetPochi architecture for of an organization front office

    Hello, I have to conceive an architecture for of an organization front office : Portal +Independent Business Modules : -Portal -> Share Point 2007 -Seperated Modules wich should communicate between them and between an ERP (legacy system)-> For this, I will shoose, ASP.NET 2.0 (GUI), WWF(Business Process), WCF(interoperability with enhanced web services) and Biztalk server(deployed as ESB) =>Is my choice of technology relevant to the system needs thanks in advance Thanks shahid_reza for this response, I think that CSF is not the best solution because in my case I need to implement Business process which include heterogenous existing systems(ERP ...) I don't think that CSF can ...Show All

  • alex china can we debug sharepoint execution

    when sharepoint is executing, like whenwe are creating a list, site or whatever that belongs originally to sharepoint, can we go and debug what s happening and put break points, trace....etc Thank you Hi, I'm presuming this is a web part or something you've written "If you're building a new Web Part, in order to debug it, you have to manually attach the Visual Studio debugger to the W3SVC.EXE process by selecting Debug -> Attached to Process ... and then selecting one or more instances of the W3SVC.EXE process, and click Attach ." The above is taken from Andrew Connells blog post here where he also mentions a much nicer way to debug: http://www.andrewconnell.com/blog/archive/ ...Show All

  • Tony Abraham RichHtmlField and RichImageField

    I need to create page layout with several "PublishingWebControls: RichHtmlField" and "PublishingWebControls: RichImageField".Does anybody have information about this Thanks Somebody answers me at the community of Microsoft: http://office.microsoft.com/en-us/sharepointdesigner/HA101741281033.aspx And You'll need to add new columns to the particular page layout content type and then add the new fields on to the page layout. Thanks to alspeirs and LM ...Show All

  • Jonathan Lavon how to prevent a program from loading wvwery time a computer boots

    Recently i had this trouble where memeory was being dumped every time the computer booted. on checking i realized an exe dump(0-k) being executed every time the computer booted after which obviously the memory got dumped onto the screen following which the computer reboots. on checking msconfig the exe had created a slot for itself to run during startup.to prevent this process from running again i disable it in msconfig and i also deleted the key from the registry for msconfig\startup.inspite of doing all this every time the system boots dump.exe gets executed although i had deleted it and a slot for it would be created in msconfig and it would be enabled.actually i could have uninstalled it if was a program but its a system program which ...Show All

8910111213141516171819202122232425

©2008 Software Development Network

powered by phorum