Tagged Questions
5
votes
2answers
184 views
How to create an ASP.NET MVC 3 control/component that can be reused by other applications
I am required to deliver a component, inlcuding business logic and UI, to be used on a ASP.NET MVC 3 web site that is being developed by other company.
I know my way around ASP.NET WebForms server ...
2
votes
6answers
636 views
Code reusability - App_Code or BIN or UserControls?
I recently had a discussion on another forum with another developer and the topic was Code Reuse in ASP.NET. The stated scenario was that he needs to update code frequently on Production servers ...
0
votes
1answer
72 views
Connect reusable ASP.NET WebControl to a method for loading data
I'm trying to create a control that can extend other webcontrols and set some properties like visible and enabled, based on user permissions.
Here's an example where your user role would need to ...
0
votes
2answers
49 views
What is the best WebControl to create this
current output
wanted output
current code
public partial class test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
...
0
votes
2answers
32 views
how to Request a resource without requesting a webPage in Asp.Net Application?
We have a Web Application (WebApplication A) which is in place and serving fine,
we are working on another WebApplication which will use the Engine of Existing Web Application (WebApplication B) to ...