Is there a standard way to convert an XSD to an input form (ASP.NET C#) so that later on whenever a new field is added / removed from the XSD the field on the page automatically shows up or goes away respectively, is this something which needs to be developed in-house I assume there must be a way to serializes / deserializes and generate...
As you can see this is a question from a none web developer. I would like to have an aspx page which, under certain circumstances, can generate a 401 error from code.Ideally it would show the IIS standard page. Any ideas are welcome.
...
A page executes a number of tasks and takes a long time to process. We want to give the user feedback as each task is completed.
In ASP.NET webforms we used Response.Flush()
What way would you a approach this in ASP.NET MVC?
...
Hello,
I am designing a crawler which will get certain content from a webpage (using either string manipulation or regex).
I'm able to get the contents of the webpage as a response stream (using the whole httpwebrequest thing), and then for testing/dev purposes, I write the stream content to a multi-line textbox in my ASP.NET webpage.
...
So I'm amending someone else's code, and they've used a data-bound Accordion control. I need to disable the Accordion functionality so that the top item is expanded and the rest are just minimized and kept that way.
Also is there any way to put a class on the final item?
Thanks a lot in advance.
...
how do i access Mysql from an ASP.NET 2 site in medium trust mode? My ISP wont allow my site to run under full trust and i've tried many(if not all) mysql apis to connect to the db.
All result in either SocketPermission or FileIOPermission errors. i have even tried overriding the trust setting in my web.config.
Any ideas?
...
Without routing, HttpContext.Current.Session is there so I know that the StateServer is working. When I route my requests, HttpContext.Current.Session is null in the routed page. I am using .NET 3.5 sp1 on IIS 7.0, without the MVC previews. It appears that AcquireRequestState is never fired when using the routes and so the session variab...
Hi All
I have placed the TreeView in the update panel and HoverNodeStyle-Font-Underline="true"
when ever mouse hover underline will be shown.But after post back there is no underline when mouse over
Any one help me please
Thanks
Sekar
...
I used to be able to do the following in Preview 3
<%=Html.BuildUrlFromExpression<AController>(c => c.AnAction(par1, par2)%>
How am I supposed to create urls in a strongly typed way with the MVC Beta?
The only thing so far I have found is
<%= Html.ActionLink("aName", "ActionName", "ControllerName")%>
This is not strongly typed off...
I have a database that I would like class files generated from, and also a .aspx page generated which contains a listview to interface with the classfile for create/read/update/delete. I have started to use Subsonic but am not sure how flexible the scaffold control is. Also, LINQ seems like an option, but it would be nice if that was g...
When you open a page in the browser, an instance of the page is created on the server. But, when you use AJAX, does anyone know if the entire page object is created at the server on postbacks?
...
I'm using Intelligencia's UrlRewriter in my application and I'm having a problem where the rules I've setup appear to be stripping the + symbol from my url.
For example I want to have the urls /category/catname/+tag+tag but it appears to me as /category/catname/ tag tag
Does anyone have any ideas and is this down to my regular expressi...
I get the warning "childNodes is null or not an object' with different line numbers, depending on which version of the library I reference (I've tried about three different versions of 1.2.6). Consequently, I get jack for jQuery intellisense.
I can hack this to get it to work, but I'd rather not as I don't understand the full implicati...
Hi, I have a "GridView" control in an Asp.net application, that has a <asp:buttonField> of type="image" and CommandName="Delete".
Is there any way to execute a piece of javascript before reaching the "OnRowDelete" event?
I want just a simple confirm before deleting the row.
Thanks!
EDIT: Please Note that <asp:ButtonField> tag does no...
How to implement in dropdownextender to go to the selected item by keyboard or go to items starting with 'A' when i press 'A' on my keyboard, i need it work as a normal drop down control.
good reference i got from it good ideas:
http://www.dotnetcurry.com/ShowArticle.aspx?ID=167
...
Is there an HTML color wheel that I can throw in my site that will return a value of the color when a user clicks on it?
would make one myself but don't want to "re-invent the wheel"
HILARIOUS(punny?)
...
I've recently inherited a fairly large web site. The project is set up as a web site in Visual studio, and not a Web Application. For a number of reasons, I would like to convert it to a web application.
I started converting the application using these directions from Scott Gu: Migrating a VS 2005 Web Site Project to VS 2005 Web Applica...
I'm working on an ASP.NET project using MVP architecture. We would like to use an object validation framework in the domain, but are not that familiar with available frameworks other than the Castle.Components.Validator namespace.
Does anyone have experience with any other light-weight object validation frameworks. If not, what appr...
I am refactoring a stack of ASP.NET pages. I'd like to compile and test the ones I've completed. However, Visual Studio won't let me run the Web Site with compile errors on the non-refactored pages. How can I temporarily exclude them without removing them from the project itself? Can you do so through configuration of some sort?
...
My web app writes to several folders (logs, uploads, etc), and I've always set these permissions manually through my hosting provider.
I'd like to create a setup script that performs this on new installations. Is this possible under Medium trust?
I can't even call File.GetAccessControl, let alone File.SetAccessControl, but I don't nee...