Search Results

5
votes

What is the best logging solution for a C# .NET 3.5 project

One of the best kept secrets in the .NET Framework is the End to End Tracing capability. It's mostly associated with WCF but it works across client and server tiers. Check out Scott Hanselman's pod …
2
votes

How to provide a Session/Host object for use in both a windows and web application?

It would take some re-architecting, but if you switch from using Session State to User Profiles you could then use Client Application Services to share the information. …
1
vote

A better way of filling out an excel spreadsheet on a web server in ASP.NET than interop?

Office 2007 documents (Word, PowerPoint and Excel) are based on the OpenXML Formats. They are just zip files with a bunch of XML and binary parts (think files) inside. You can open them with the Pa …
0
votes

Rendering Excel from browser

Office 2007 documents (Word, PowerPoint and Excel) are based on the OpenXML Formats. They are just zip files with a bunch of XML and binary parts (like images) inside. You can create them with any …
1
vote

Authorization, authentication when doing AJAX (jquery) calls to .net web services (asmx, wcf, etc), what do I need to know?

It works basically the same way as with regular ASP.NET and ASMX/WCF. The big difference is that you'll need to use the Membership API from the client-side (whioh is fully supported by ASP.NET AJAX …
1
vote

Webpart Connections asp.net VB

I didn't have a chance to look at your message in detail but the issue appears to be with your provider. It should be returning an object that implements the interface used for communication to the …
1
vote

Using Microsoft Search Server 2008 with asp.net/vb.net

Microsoft provides developer APIs. The assemblies are part of the Search Server 2008 SDK. http://msdn.microsof …
0
votes

Sending asynchronous request on clicking a sharepoint web part button control

Once you know the tricks needed to get SharePoint and ASP.NET AJAX to work together it's not that difficult. Here are the steps required: Ensure the ASP.NET AJAX Extensions ar …
0
votes

How do I get access to the ASP.NET Client-Side API at all times?

I'm not sure I follow your question but hopefully this will help. The standard method to ensure you have access the the ASP.NET AJAX client-side libraries is to add a ScriptManager control to your …
0
votes

Resources for WinForms/WPF dev trying to learn ASP.NET

The are lots of resources on the web but I would definately recommend the Learn section of the ASP.NET Community Site: http://www.asp.net/learn/ …
4
votes

Add Custom Control in Asp.net

Any page with a MasterPage, whether it is in SharePoint or not, is a Content Page. These pages only support content contained in Content controls. Attempting to add an HTML tag or ASP.NET control d …
0
votes

How to get XML from Ajax jQuery Instead of json

Try adding the following attribute to your service operation: [ScriptMethod(ResponseFormat=ResponseFormat.Xml)] …
0
votes

Is it possible to suppress the Web Forms Designer in Visual Studio from being opened?

I think so. In the Solution Explorer, right-click the an aspx or ascx file and choose Open With. When you choose the editor you want you can set it as default. …
0
votes

How to add custom ASP.NET pages into sharepoint

This Visual How To walks you through the process of creating an application page step by step. Creating an Application Page in Windows SharePoint Services 3.0 …
0
votes

How and where to learn the changes in .net from .net 2.0 to .net 3.5?

This is a good start: What's New in the .NET Framework Version 3.5 http://msdn.microsoft.com/en-us/lib …

1 2 next
15 30 50 per page