Search Results

-1
votes

What is ASP.NET?

Is this why SO was created? To answer questions that are already covered in various online resources? Why not ask Microsoft what ASP.NET is? Or Wikipedia? Or Google? …
0
votes

Webpart registration error in event log

Can you provide more information about the error? Is there an error for each assembly? …
1
vote

Best way to share ASP.NET .ascx controls across different website applications?

An alternative is to use your source control tool to "share" the ASCX controls between your webapps. This will allow you to make changes to the controls in either application and have the source co …
0
votes

Best way to share ASP.NET .ascx controls across different website applications?

I use StarTeam here and it allows you to "share" objects (files, change requests, requirements etc) across multiple folders. Not sure if Subversion (SVN) has that feature. If it doesn't, here's ano …
0
votes

UI’s in Sharepoint

Option 2 from Mauro is the quickest and most flexible way. If you use smart part, you just have to focus on developing regular ASP.NET user controls. …
0
votes

Is InfoPath the right choice?

Before delving into whether or not InfoPath (+ SharePoint) is the right solution, what's the reason for not using ASP.NET with which I assume you are familiar? While InfoPath + SharePoint is sexy a …
3
votes

How do you return more than one DataTable from a method?

I would think it's the same way you'll return 3 variables from a method: return a collection create a structure to hold the 3 results use out parameters …
1
vote

Is there any reason why an asp:Button will work but an asp:LinkButton will not?

LinkButton uses javascript. Check that it's not turned off on the browser. …
0
votes

How (if at all) can you make an ASP.NET UserControl inherit from another UserControl?

The short answer is no it can't be easily done. There's no inheritance between user controls or webforms. You can create an inheritance hierarchy between the code behinds classes but the g …
1
vote

Charts for ASP.NET

I have used Telerik for basic charting and it's not bad. Of course, it's not free. So you might want to investigate the Microsoft Chart Control first. …
2
votes

Charts for ASP.NET

All those recommending Microsoft new Chart Control should know that it requires .NET 3.5 SP1. So while it's free and good looking, unless you are running .NET 3.5, you can't use it. …
1
vote

Newbie ASP.Net programmer needs help

You can force the page to refresh by using a meta tag, or javascript. Or AJAX. …
0
votes

How do you deploy your ASP.NET applications to live servers?

Simple XCopy for ASP.NET. Zip it up, sftp to the server, extract into the right location. For the first deployment, manual set up of IIS …
2
votes

MOSS vs. traditional ASP.NET

Frankly, I don't understand why people compare SharePoint and ASP.NET as if they were competing products. If you need majority of the features of SharePoint (collaboration, workflow, communities, o …