asp.net

Connect to MSN Messenger from ASP.NET page

Has anyone connected to MSN Messenger from an ASP.NET page? We found this component: http://www.xihsolutions.net/dotmsn/, but it works only for desktop applications and we couldn't make it work in our web site. Are there any working solutions either with the above component or with another component? ...

Best ASP.net WYSIWYG

Ok, i've read most relevant questions asked here previously on this but I still don't see a clear "best in class" suggestion for WYSIWYG editors for ASP.net I've used fckeditor up to now (found it ok but many problems with config/permissions on folder etc.). I'm looking for something that has a lot of flexibility/config options and ca...

Why does asp.net tracing only work from time to time?

ASP.NET tracing seems very erratic. Sometimes it traces and sometimes it doesn't. I trace from my ASCX using... Trace.Write("etc. etc."); My web.config looks as follows... (in WSS3) I first ensure that SharePoint allows the page level tracing... <SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDepende...

How do I monitor ASP errors

I come from a mainly PHP background and make good use of the Apache error logs by using the command line. I've recently been handed a large ASP/ASP.NET project that I need to make changes to, where do I find the error logs on a Windows IIS setup so that I may troubleshoot some issues? ...

.net webservice publishing process question

I have a webservice that exists in an asp.net website. When I publish the site to a test server I have to go into the bin folder and into the .svc file for the service and manually change the URL to correctly reflect the test server URL. Is there a better way to handle something like this? ...

Can I use Ajax and ASP.NET Tracing on the same page?

I'm using an Ajax update panel and have recently added ASP.NET tracing code to aid in debugging. All of the sudden I started getting PageRequestManagerParseErrorExceptions when any Ajax code is executed. For example: Trace.Write("Done setting employeeId."); Apparently this is because I am not allowed to use "server tracing" along w...

Rewritepath and IIS Integrated Mode

I have big issue with url-rewriting for IIS 7.0. I've written simple module for rewriting for my NET3.5/IIS7 web application. Here is a part of the code. public void Init(HttpApplication context) { context.BeginRequest += new EventHandler(context_BeginRequest); } void context_BeginRequest(object sender, EventAr...

dynamic panel/controls - ASP.Net VS2008

I have the following table <td class="style2"> <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem>Location</asp:ListItem> <asp:ListItem>Name</asp:ListItem> <asp:ListItem>SSN</asp:ListItem> </asp:DropDownList> <asp:DropDownList ID="DropDownList2" runat="server"> <asp:ListItem>LI...

Forms Authentication timing out when it shouldn't?

I have a problem with an ASP.NET application that is driving me nuts. When a user leaves a page inactive for a period of time the session was timing out and error were being thrown due to session variables not being resolvable (I will error trap this anyway but this is not the problem). I coded a 'defribulator' which will perform an inv...

Editing documents seamlessly in a Web Application

We have a web application, which involves a lot of documents. In a typical use case, a document will be generated from our web application. The user download the generated document to the local file system and modify it. After this work, the user upload the modified document back to the web application. I need an easier way, to work wi...

ASP.NET GridView CSS issue when sorting turned on

I created a GridView in an ASP.NET application and used the Auto Format tool to apply an attractive style. Now I'm moving the style markup to the CSS sheet and I'm having a weird problem where the text in the header row isn't the correct color (it should be white but it shows up a bright blue). This problem only shows up when I turn so...

How do I get Gridview to render THEAD?

How do I get the GridView control to render the <thead> <tbody> tags? I know .UseAccessibleHeaders makes it put <th> instead of <td>, but I cant get the <thead> to appear. ...

How can I post an array of string to ASP.NET MVC Controller without a form?

Hi there, I am creating a small app to teach myself ASP.NET MVC and JQuery, and one of the pages is a list of items in which some can be selected. Then I would like to press a button and send a List (or something equivalent) to my controller containing the ids of the items that were selected, using JQuery's Post function. I managed to ...

weird smallmoney in MS sql to decimal in .Net

i have a smallmoney value in db as 25.00 when i read it to .net decmial it became 25.0000 on the asp.net gridview. where did it tack on the extra two digits? ...

UI's in Sharepoint

Our web team has been asked to build some user interfaces in Sharepoint. The UI's would primarily be forms that would need to write to a SQL Server database. Is ASP.NET the best way to do this? If so what's the best way to integrate the ASP.NET application into Sharepoint? ...

Need a good ASP.NET menu

I am looking for a good menu to use in an ASP.NET. I am currently using the asp menu. I need it to work in IE 6,7,8, Firefox and Safari. I also need it to not add a lot of overhead to the page client-side. I need to be able to load it from the database. ...

Gridview Column Width in ASP.NET 2.0

How do you control the column width in a gridview control in ASP.NET 2.0? ...

"Padding is Invalid and cannot be removed" exception on WebResource.axd

I have an ASP.NET 2.0 application that is working fine in our local environment. When published to a test server, we're getting intermittent errors on the server. Here's the most common: Padding is invalid and cannot be removed. Description: An unhandled exception occurred during the execution of the current web request. Please review...

ASP.NET WebForms + Postback then open popup

I have a LinkButton that has to postback to perform some logic. Once it is finished, instead of loading the page back up in the browser, I want to leave it alone and pop open a new window. So far, the best idea I've had is to put the LinkButton in an UpdatePanel, and have it render some JavaScript out when it reloads, yet I think that ...

Events on ASP.NET UserControl raise every other click?

Yes, there is a similar question here. However, that question doesn't seem to have code attached to it (though it might have at some point; I see answers alluding to code), and the accepted answer (and other advice) on it aren't getting me where I need to be. I have a fairly complex, and frankly not-well-designed VB.NET web app I'm exte...