I have been using Visual Studio 2005 and 2008 for a long time now, but now I'm consulting somewhere that has all ASP.NET 1.1 apps, so I need to use Visual Studio 2003.
Can anyone recommend some good add-ins, settings, general tips, etc when using VS2003 to make it a little more like...well...VS2008?
Note: I've heard about MSBee, but VS...
I have a form that when submitted successfully generates new elements on the page describing the successful form submission and providing the user with some "next steps" information.
This success message element is at the top of the page and I'd like to bring the user's scroll position to this point after they submit the form.
I unders...
I am writing a web app in ASP.NET (2.0), VS2005. The main reason for developing a new application (rather than using readily-available off-the-shelf solutions) is that I need full support for at least two languages (that is front-end and the data). I am looking for the best ways of tackling i18n in ASP.NET (it can be just the UI, sorting...
Good day everyone,
I am building a page in ASP.NET, and using Master Pages in the process.
I have a Content Place Holder name "cphBody" in my Master Page, which will contain the body of each Page for which that Master Page is the Master Page.
In the ASP.NET Web page, I have a Content tag (referencing "cphBody") which also contains som...
I am creating a custom ASP.NET AJAX server control in which multiple instances of the control may be placed on the page. That control wraps JavaScript objects, which I need access to those objects for each individual control. For example, the JavaScript object may have a property called "x" and control1 might have x set to 5 and contro...
The short version is that I have nested FormViews. I would like the child FormView to only change modes when the parent does so as well, so I handle the ParentFV.ModeChanging event and call ChildFV.ChangeMode within that...
For some reason, the Child FormView's mode doesn't change... nore does the Child's ModeChanging event appear to g...
Some background
So I was finishing up some enhancements in a web application that does some automatic interpolation of data. There are a handful of textboxes that the user fills out, and other textboxes in between them have values automatically calculated. The textboxes that receive automatically calculated values must be readOnly to ...
When using CreateUserWizard and setting LoginCreatedUser property to true, I would expect that since user is already authenticated by the time CreatedUser event handler is called, that profile for authenticated user would already be available. But that doesn’t seem to be the case.
So when exactly does profile for authenticated user bec...
So here's the issue. We run Sitecore, which does URL rewriting, and allows for something like example.com/Folder/Page.aspx to be a proper URL.
Now, "Folder" doesn't actually exist on the file system, and neither does "Page.aspx". But those URL's work, because ASP.NET does what it's supposed to.
Okay, so now say I try to go to a web p...
Hi,
I am interesting in using Jquery Validation in the app (ASP.NET) I am currently developing.
Using the default settings in JQuery really messes up the layout of the form. I wanted to show the error summary on the top of the form and have a icon floating next to the control to indicate the error input.
I know how to get the error ...
Does anyone know of a third party control or set of code that allows directory browsing integrated into a web page that uses master pages? So I'd need a content control that I can simply give a local server directory to as a root directory and it will display any files and directories in the browser underneath the root.
I don't need any...
I'm trying to implement sql server 2005 cache dependency in ASP.Net 3.5.
I have a lot of lookup tables (around 50 in all) in my database that will hardly change after the initial setup.
I plan to register all of them in the SQLCacheDependency.
I'm wondering if there will be a performance hit when so many tables are registered, because SQ...
To protect a web application from query string manipulation, I was considering adding a query string parameter to every url which stores a SHA1 hash of all the other query string parameters & values, then validating against the hash on every request.
Does this method provide strong protection against user manipulation of query string va...
I have some code which involves dynamically creating new buttons, when a user clicks on a particular button. However the EventHandlers defined for these dynamically created buttons do not execute when I click on any one of them. Here is the errant code snippet:
protected void Page_Load(object sender, EventArgs e)
{
.......
btn1....
I have a asp.net button which is runat server.
there is a function handle the postback of button onclick.
How can I display a "loading ..." word in the page before going the server procedure ...?
...
I just began using Visual Studio to work on a practice .NET project. I have added a stylesheet that I made outside of VS. I went to Project/Add Existing Item... My question is, how can I view all the items I have added to a project.
...
Just curious if anyone else has got this particular error and know how to solve it?
The scenario is as follow...
We have an ASP.NET web application using Enterprise Library running on Windows Server 2008 IIS farm connecting to a SQL Server 2008 cluster back end.
MSDTC is turned on. DB connections are pooled.
My suspicion is that some...
Let us define that "Standard Paging" which means that paging mechanism provided my either Gridview (ASP .Net 2.0) or ListView (ASP.Net 3.5)
and
Custom paging - (Paging Control outside the control) - which does not retrieve the data from server not more than 1 Page of records (page - control page size usually 10-15records))
Would like ...
We have been using Mosso / The Rackspace Cloud until very recently, but they have suddenly switched to a medium trust model for .NET for newly added sites and will be migrating existing server farms to medium trust shortly
We can't get our Sitefinity CMS V3.6 SP2 (the latest) to work in this environment.
Does anyone have any ideas abou...
If i use a separated ASP.NET Membership database what is the correct way to define the relations between the user tables and application data tables?. Should i create copies of the user tables and sync? or is ok to just create the Guid columns and enforce validation in the application code?, Are there any issues with performance that i s...