Create an MVC project, and its "Scripts" folder will include MicrosoftAjax.js (release and debug versions).
In Visual Web Developer 2008 Express Edition at least, the Scripts folder does not contain any of the Globalization scripts, i.e. the 205 files (e.g. "af-ZA.js") that define and set up '__cultureInfo' for that culture.
They are a...
I want to implement an apperance as this article mentioned using nested ListView control. However, in my scenario, I cannot use EntityDataSource control so I bind data manually.
My table:
Categories
PK: UniqueId, Guid
Name, string
ParentId, Guid
<asp:ListView ID="CategoryList" runat="server"
onitemdatabound="CategoryLis...
Here is one:
Is there anyway to see if a DropDownList control in my page is bound to an Ajax CascadingDropDown on run-time(Code)?
thanx
...
Every time i refresh the page i get the next 10 results. It is my intention to always get the same 10 items.
I have the following page
export.rails?items=10
Which hits the following Monorail Handler
public void export(int items)
{
TypedPropertyBag.Delegate = delegateRepository.FindAllDelegatesIsExported(items);
}
...
I have been wanting to learn web development for a long time, however without a goal to work towards I've been mostly stuck to following tutorials in books. I do much better when I have something to work towards. What sort of web pages to people normally get started on building? I'm an experienced professional C++ programmer so it doe...
hi everyone,
I really neeed dd-mon-yy format because my oracle database accepts dates in this format.
Can I validate like that in RegularExpressionValidator like that?
And also, do I have to convert the textbox value to oracle data time format, when using nhibernate?
thanks a lot for help;
...
Hi,
I have two questions about the asp:updatepanel:
Is it possible to show the progress bar for an updatepanel on e.g. a thickbox.
How can I get custom sorting to work with the updatepanel? I have used the code below normally, but now it doesnt' work when in an update panel?
...
I've recently deployed an ASP.NET application to my shiny new VPS and while I'm happy with the general performance increase that a VPS can give over a shared hosting solution, I'm unhappy with the startup time of my application.
My web application takes a fair amount of time to start up when my client first hits it. I'm not running it i...
We have an ASP.net 2.0 web application which is using themes set on the application level using web.config. The theme gets applied correctly for any web page that inherits from Page. The problem is that theme doesn't get applied to our base page which is also inherits from Page.
Suppose our base page is called MyBasePage : Page.
page1....
All, my situation is that I have the basic route, plus some other simple routes:
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = 1}
);
So the f...
What are some strategies for programatically setting up an email interface between a pop3 mailbox and an sql server database ?
I'd like to be able to setup an account, say "[email protected]", and any email sent to that email address I'd like to senders email address, the subject and the body of the message inserted into a table (for ...
Hi,
I have two DropDownListBoxes one is called ddlDay and the other is ddlMonth. As their names suggests, ddlDay has values from 01 to 31 (not dynamic) and ddlMonth has values from 01 to 12. These values are not dynamically set.
When the page loads, I am getting values from the db.. depending on the value, I am using ddlDay.SelectedIt...
I've 2 asp.net pages..page A and page B.
On clicking a link on page A, user gets redirected to page B.When on page B, if user clicks browser's back button,I need to forcefully invoke page refresh of page A.
How do i achieve this functionality?
Note:Code needs to be compatible across different browsers...ie IE, firefox, opera, etc
Thank...
Hello. I was called to work on an older .NET legacy web app recently. The performance had recently fallen quite sub-par, as the amount of data in the system had quadrupled. Had been fine for the previous 2 years.
It was using a .xsd file to talk to a stored procedure that narrowed the results sufficiently (though no paging) and feeding ...
Hello,
Q1
To configure membership provider, you also have to add section to your web.config file. One of the properties of SqlMembershipProvider is also applicationName. If you don’t specify this attribute, then membership API will associate objects in database to the root application with the “/” name.
A) what is meant by r...
Hello,
Q1 -
I’ve created two membership databases ( using aspnet_regsql tool ) DB1 and DB2. I then created web applications A1 and A2. A1 uses DB1 to store user credentials, while A2 uses DB2. If the user I created in A1 ( via Asp.Net WAT tool ) uses email [email protected], then none of the users created in A2 can have the same email add...
I've a asp.net page which uses multi select checkboxlist(say having 10 checkboxes)....for example
I've enabled AutoPostBack for any change in checkboxlist.
Initially,out of 10, 3 are selected.
On top of this, if user checks another checkbox, how do I know which particular checkbox has been checked by the user and retrieve its value?
...
Hey guys, here's the setup (bear in mind I'm really struggling with the Windows/.NET security stack i.e. I don't get it):
A Windows Service running as LocalSystem on a Windows Server 2003 box.
A .NET 3.5 Website running on the same box, under "default" production server IIS settings (so probably as NETWORKSERVICE user?)
On my default...
I need to generate an image dynamically, and after I read the tutorial here I realize i can use all the controls and layouts from WPF to generate my rendering, and then save it as a JPG.
The idea is to use this instead of GDI+, which is quite primitive.
The question is, how to I create a regular dll file that would generate programatic...
I'm reading about ASP.net MVP pattern over this weekend and it seem like even the most simple task take too much effort if do it in MVP pattern the pay off seem to be at larger project but i think to myself if i'm going to follow MVP. Why not just do the project in ASP.net MVC?
The reason that I'm looking at MVP pattern is because I've ...