Is it possible to grab specific elements from a database via the entity framework and display them after clicking a 'Find' button on the page?
Lets say there is a textbox and you have to enter a number. Upon entering a certain number, a certain database table's column will be searched for that number and all instances will be returned ...
Let's say I have an ASP.NET site (MVC in this case) that uses Forms authentication and a typical membership system. The site allows both authenticated and anonymous users.
When I release the site as a private beta I want to add another layer of security on top of the application, like superuser's simple password system, for example. Onc...
Does MS Office Live allows user to upload and use asp.net websites? We have a specific requirements where we need to upload and use the our own modules..
I understand the security where it is dangerous for MS to allow user to port their ASPX and dlls into the server..
I would like to any other options to run custom ASPx on MS Office Li...
I am using the standard asp.net treeview control to display a menu structure that is getting bound from a database. The data structure has a parentID column to represent the node relationship if one exists.
Anyway, that's not an issue, I am looking for a treeview control that would allow a user to rearrange the node by dragging them to ...
In ASP.NET webforms, when setting UICulture="en" in the @Page directive, a Response.Write(Page.UICulture) returns the string "English" instead of the two letter language code "en".
Is the the only way to return the two letter language name by using this?
CultureInfo.CurrentUICulture.TwoLetterISOLanguageName
Or is there a better / mor...
I have a question about ASP.Net data binding - for a small internal tool I'm creating.
Simplifying the scenario, there's a page with some Repeater controls to display lists/tables, and also some edit boxes. Within Page_Load() I bind all the Repeaters from a business object (stored in ApplicationState). If it's not a postback then I also...
I have an ASP.NET web application I built for a client that uses default the ASP.NET forms authentication. They are now requesting a desktop (WinForms) app that works "with" the web application. I have created the webservices to access the data they want from the web app and put it into the desktop app. That works great.. but there needs...
So we've hired a company to migrate our three websites from custom built CMS solutions to Typo3. One of our sites is still in classic ASP while the other two are in ASP.net 1.1 & 2.0. Typo3 wasn't my choice, but the choice of those with the purse strings. Anyway, the migration of the sites is progressing but I have a problem that nobo...
I've got an ASP.Net project with C# and have a Repeater Control on an aspx page that builds up an html table by iterating over a datasource. I want to use the JQuery Flexigrid plug-in to make the table scrollable, but have been unable to figure out how to make it work due to lack of documentation on the plug-in. Does anyone know how to...
I have an APS.net app (C#) with several pages that use the same MasterPage. In that page, I have included a couple stylesheets like so:
<head runat="server">
<link href="/apps/_lib/ui/styles1.css" type="text/css" rel="stylesheet" />
<link href="/apps/_lib/ui/styles2.css" type="text/css" rel="stylesheet" />
</head>
These styles apply c...
I am currently building a new version of webservice that my company already provides. The current webservice has an input parameter of type string. In that string an entire xml doc is passed. We then validate that string against an xsd (the same xsd given to the consumer). It looks something like this:
[WebMethod]
public bool Upload...
Hi,
Say I have a table that holds content:
Content(contentID, title, body, privacyType)
Privacy type can be:
Public = 1 (anyone can view it)
Private = 2 (only the author can view it)
Friends = 3 (only friends can view it)
I have a users table:
Users(userID, username)
THen I have a mapping table for the users friends:
Friends (use...
Specifically, we are trying to upgrade our telerik controls to the latest version. Unfortunately, the old DLL's are so old that many of the control properties have changed vastly so we've decided to upgrade only the telerik control that is giving us problems (the RadEditor control).
So the bin looks something like this:
RadChart.Net2.d...
Hi,
Is there are some ability to disable .net 3.5 on IIS 6 for asp.net site? I just have an application (.net 2.0) that has not working on server with .net 3.5, is throw :
Attempted to read or write protected
memory. This is often an indication
that other memory is corrupt.
Description: An unhandled exception
occurred dur...
I'm wondering about best practices to develop ASP.NET MVC apps with an option to deploy on Linux. If you are creating these kinds of MVC apps,
What Linux/Mono platform are you targeting?
How much of the development are you doing on Windows and how much on Linux?
Are you using an ORM to abstract the database? Which one?
Are you running ...
Hi All,
I have VS2005 and .net 3.5 installed on my machine I have heard of WPF and want to practice WPF solutions what other software should I install to write WPF program in VS2005 as it does not show any option for the same by default.
Also any link for some cool stuff for beginners on WPF will be very helpful.
Please help
...
I have a friend who works at a job that has no planned upgrade plan on getting off of VS2005 and Sql Server 2000. He's concerned that his skills may fall behind even though he attends user group meetings and tries to cover various topics on his personal time. After talking with him, it got me interested in what people may think the "cu...
I want to ensure that the websites users don't mess up the primary data table so before each update the non-updated data should be stored into a history table.
I am thinking of using the 'RowUpdating' event on the GridView to do this.
How do I manually run a insert query using my existing SQLDataSource?
Overall flow would work like ...
I want to restrict access to a particular url unless the user is a member of 2 different roles. In this case I only want to grant access to this url if the user is in both the Reporting AND Archiving role. Is there a way to do this in ASP.net?
<location path="testpage.aspx">
<system.web>
<authorization>
<allow roles="Reporting, ...
I have a set of excel templates, which will be entered by users. I have to import the data entered in to this templates to database. Problem with the templates is that they are not in the tabular formats.
...