Duplicate:
http://stackoverflow.com/questions/62251/where-can-i-find-good-asp-net-tutorialor-books-online
http://stackoverflow.com/questions/282086/learning-c-aspnet-35-what-order-should-i-learn-in-what-to-skip
http://stackoverflow.com/questions/50238/what-are-some-good-resources-for-learning-asp-net-aside-from-stackoverflow-of
I ...
I have this function...
private string dateConvert(string datDate)
{
System.Globalization.CultureInfo cultEnGb = new System.Globalization.CultureInfo("en-GB");
System.Globalization.CultureInfo cultEnUs = new System.Globalization.CultureInfo("en-US");
DateTime dtGb = Convert.ToDateTime(datDate, cultEnGb.DateTimeF...
Hi there.
We (my company) is trying to develop a solution (application) for document management.
We have considered using MS Sharepoint Server 2007 or Sharepoint Services, but we need recommendation or suggestion for this.
We are planning to use windows workflow fundation for various tasks like(task assignment, document approval, infor...
I would like to programmatically insert additional rows into a DataGrid (to act as subheadings). I have followed a number of articles online (namely option 3 from http://aspalliance.com/723) but they all result in the row being displayed correctly, but with no contents.
Here is the important part of the code I'm using:
private void MyD...
I have a DataGrid with AutoGenerate Columns Set to true. SomeHow the Column Names are Shrinking . I dont know how but they are not even changing if applying css to them.
What could be the reason.
...
I want my asp.net mvc framework system to send an e-mail everytime a certain action (inside a certain controller) is fired off. Are there any third party libraries or .net standard ways to accomplish this?
...
I am working on the rewrite of a large VB6-based application. We are moving from Windows Forms to web-based deployment using ASP .Net. There are about 50 core users and all are internal to the company.
We need an efficient way to try out different designs in order to investigate the information architecture of the site, the workflow, an...
Edit 6/8/09: While this issue is marked as closed, this is because it had a bounty on it, and automatically closed. The issue is not actually resolved. It strongly looks now like this issue is not, in fact, related to ASP.NET or WebResource.axd directly...but is, instead, a problem with IE 8.0. Please see the modified question on Stac...
I recently joined a firm and when analyzing their environment I noticed that the SharePoint web.config had the trust level set to Full. I know this is an absolutely terrible practice and was hoping the stackoverflow community could help me outline the flaws in this decision.
Oh, it appears this decision was made to allow the develope...
Hi guys,
Every time I use Setup & Deployment to create a new Web Setup, and run it (after edit all the nice things in the properties), the output is always a copy of the Web Site project...
How can I output a PreCompile version of the WebSite project?
What I did was, publish the Web Site (so I get the precompiled version), add this ne...
I have some business objects which use:
Web.Configuration.WebConfigurationManager.AppSettings.Item("SomeSetting")
Now that I'm breaking those objects into their own library, it feels dirty to take a dependency on System.Web when nothing else in the library has anything to do with web.
What is the proper way to do this?
UPDATE: Fou...
I'm looking for a cheat sheet that will allow me to show an HTML designer the equivalent asp.net controls for standard HTML tags. As an example the <asp:Panel> will render as an HTML <div> and an <asp:Label> will render as an HTML <span>. I've been googling this to no avail. Can someone post a link to a good cheat sheet so that the de...
Can the elements of the Master Page be accessed from the Content Page?
Lets say I have MasterPage1 and ContentPage1 that inherits from the MasterPage1, and the MasterPage1 has a button: Button1.
Can I change the property of that button from the content page, for example to make Button1 invisible, inactive etc? How can I accomplish this...
Hello all,
I have an ASP.NET website (in C#) that takes in user data and then attempts to create a windows scheduled task. Of course, this works great on the DEV machine, but fails to run on the server. I'm trying to figure out what permission(s) are required on the ASPNET user (or anonymous web user) to create tasks.
The error is:
...
I am looking for a light-web embeddable web server for .NET.
I need it to fake a SOAP web-service for automated testing, so it is a big plus if it supports ASP.NET web-services or another easy way to create SOAP web-services. Extra bonus points for quick startup and shutdown and multiple simultaneous instances on different ports.
A Goo...
Hi,
I have developed a business index which combines ecommerce websites.(in asp.net2.0+c#)
I'm looking for an in-site search engine that already handles issues like indexing, speed and quality.
Are there any famous solutions doing such?
I need the search results to be customized on my design, so google search engine isn't an option.
...
I would like my website to create search-engine-optimized links for dynamic content (instead of locating data via the querystring). So:
mysite/SomeModifiableNname.aspx instead of
mysite/DynamicContent.aspx?entryID=2345.
Aside from a smart 404 handler that redirects requests, or a custom mime-type handler in IIS, is there a good solut...
I have two tables 1) Product 2) Categories
Product table has a field called "CategoryID" and the Category table has a field called "CategoryName", ID, DateCreated, and a few others.
I want to use LINQ to SQL to query all the Product rows as well as JUST the Category.CategoryName. This query will be used in a datasource and be bound to ...
hi everyone,
I was wondering if there is way to open another page using a Modal Popup Extender?
and if there is can someone please the tell me how do i go about doing it ..
Thanx
Owais
...
How can I dynamically load a usercontrol in ASP.NET if I dont have access to a Page object (say I'm in a utility class)?
Normally you would do :
Page.LoadControl("~/controls/MyControl.ascx");
...