Hi,
I use ASP.NET and WCF services in a load balanced web server environment, using Memcached in the service layer.
I also wanted to replace the use of ASP.NET State Server (for Session State) with Memcached.
Now I am afraid it is not a good thing, because from what i understand,
Memcached is a cache server rather than a state server, ...
I need to connect to Outlook through ASP.NET web application using user credentials. What are my options?
FYI: User logs into the web site by using Windows Authentication. I'm working with Outlook 2003.
...
I'm writing a small page to show the employees in our company. I've written a query to pull the info from our database. Then I'm binding that to a GridView to do the dirty work. Here is the query.
"SELECT tblEmpID.empid AS [Empl ID], tblEmpID.posno AS [Pos #], [name] & ""<br />"" & [jcn] & ""("" & [jcc] & "")"" AS [Name/Job], [orgno]...
What is the easiest way to set the contents of an <asp:ContentPlaceHolder> programatically? I imagine ill have to do a Master.FindControl call?
...
I'm creating an asp.net app with just some lite data access from xml files. However, I need to be able to authenticate administrative users (via forms) to manage that data. I don't want to stand up a sql db just for authentication purposes. I'd like to use xml, but not sure about security with that. Any suggestions? Custom role prov...
ArrayList filters = new ArrayList();
filters.Add(new string[] { "Name", "Equals", "John" });
ObjectDataSource1.SelectParameters.Add("AppliedFilters",
string.Join(",",(string[])filters.ToArray(typeof(string))));
Am trying to add a parameter to my object data source which is bound to my select method which should acce...
I'm running Windows XP SP3 and I do have the latest .NET libraries installed, as well as Visual Studio 2008. I'm also running (and would like to continue to run) Apache HTTP Server as well, if that matters.
Perhaps someone can provide a list of software that I need and then I can look up configuration or ask here if I can't find what I ...
I hate to be subjective in this way, but with many people calling this website a .NET oriented website it's probably the best place to target this question at.
In the current climate, should I, a simple beginning programmer, learn a .NET language? Obviously the most popular languages/frameworks around at the moment are ASP.NET (I know i...
Hi,
For enterprise web apps, every little bit counts.
What performance tips can you share to help programmers program more effeciently?
To start it off:
Use StringBuilders over strings since strings are Mutable (they get re-created everytime you modify them).
Avoid using Datasets as they are very bloated, using SqlReader instead.
...
I'm writing a "simple" web app for web enabled phones. I'm using ObjectList to show a list of service orders, and need to allow certain commands to be fired on those. All is fine, more or less, with the layout and everything... but in the ItemCommand event the MobileListItem in the command argument does not have it's Value or Text prop...
How can I take full advantage of 64-bit architecture in my .NET 2.0 Web Applications and Console/Forms Applications?
...
We have an advanced webpage (ASP.NET, C#), and a application which needs to be installed on the client computer in order to utilize the webpage to its fullest. The application is a tray app, and has primarily two tasks. Detect when certain events happen on the webserver (for instance invited to a meeting, or notify of an upcoming meeting...
I've long toyed with the idea of some kind of auto-cleanup page that performs routine maintenence tasks and is called out of scope of the current page execution by means of calling a 1x1 pixel gif with the asp.net page as the src parameter. One thing I've never really decided on, however, is how to handle the timing of such a page's exec...
Hi folks,
I've got a stock standard ASP.NET website. Anyone can read/view any page (except the admin section) but when someone wants to contribute, they need to be logged in. Just like most contribution sites out there.
So, if i have my OWN login control or username/password/submit input fields, why would i want to have forms auth tur...
Is it possible to use a TabContainer inside a templated FormView like so:
<ItemTemplate>
<cc1:TabContainer ID="TabContainer1" runat="server">
<cc1:TabPanel ID="Tab1" runat="server">
<HeaderTemplate>Tab One</HeaderTemplate>
<ContentTemplate>
...
I'm newbee in asp.net. Just noticed that the style of the navigation menu on windows.com is just what i need for my website. I'm wondering how to create that kind of drop down list that has multiple columns. When the mouse hover on each item, the column gives a preview of that item. Thank you.
...
Most ASP.NET hosts give you a single website in IIS. Then, they let you set subfolders as applications. Are there any shared ASP.NET 3.5 hosts that give you multiple websites with a single account?
I have several low traffic websites that don't use much bandwidth.
...
I need to find whether the user clicking the browser back button or Refresh button.
I need to redirect the page to Error page when he clicks the back or refresh button. How to do this.
I need to do this in javscript for my ASP.net page
...
Hi,
I am trying to learn & create Visual Studio templates and as per this MSDN article,
The simplest type of template to
create is an item template. To do so,
simply open a project that includes
the file you want to use as a template
and then chooses File | Export
Template to run the Export Template
Wizard
Now, the pr...
Hello,
I'm using reCaptcha in my asp.net 2.0 web application.
I'm using onClientClick="return validateForm()" on my submit button.
validateForm does basic checking and stops the form from getting to the server if not needed...
For some reason, once the user passes the client side validation he always gets Page.IsValid="false"...
If ...