Hi,
I have a database field called abCode, that I want to map to a property called statusCode in the objectlayer. What changes are needed to the msl, csdl, ssdl and object layer to acomplish this?
Here are the relevent (I think) parts of the files:
In msl:
<ScalarProperty Name="abCode" ColumnName="abCode" />
In csdl:
<Property Nam...
Hi,
I have a basic test web form with a DataList and a DetailsView and two XmlDataSource components for each of them.
The binding of the DataList to the underlying XML document was easy to set up, but I'm struggling with getting the DetailsView hooked up. The idea is that there is a master/details relationship between the two bindable ...
We are preparing to develop an enterprise Human Resources Project using ASP.NET and our team is interested in using MVC instead of WebForms but we are a bit worried about this.
We are not sure that this is a suitable solution for an Enterprise project.
...
I've got a couple of ASP.Net Usercontrols that I am using in different locations of my new website. These usercontrols had links like this :
<a href="daily/panchang/"></a>
If the usercontrol is used in pages in various subdirectories the relative path just doesn't work, and I don't want to provide my full website name in the path. S...
Hi,
I need to draw an image over another image at specific location to block the image postion to be used by other users, please help me provide some guidlines, urgent.
Thanks & regards,
Khushi
...
I have a simple ASP.NET 3.5 SP1 Web Forms app... I've added the System.Web.Routing DLL, and I've made a simple route that returns a standard ASP.NET Page as the "IHttpHandler".
All is good... except that HttpContext.Current.User is null ???
So, I did a little more digging (I put breakpoints in all the events in the Global.asax file). N...
Got reports of a web app going down twice in three weeks. Need to do some root cause analysis. works fine after a reboot. I'm not really an expert in this field.
It is hosted on IIS and Windows 2003.
There is nothing interesting in the event viewer, and IIS logs just show lots of successful GET operations. There is nothing interesting ...
When is the IOC container in the life cycle of an ASP.NET application?
When can I start requesting objects from the container?
...
Does anyone know how to disable an ASP.NET validator using JavaScript?
I'm using javascript style.display = 'none' to disable parts of a web page. However these disabled parts have asp.net validators that are still firing and I need to disable then without doing a round trip to the server.
Thanks.
...
The Problem
What is the proper way to check for the foo parameter in the following url's querystring using asp.net? Is this even possible?
http://example.com?bar=3&foo
I have tried checking Request["foo"] as well as Request.QueryString["foo"] and I get null for both. I have also tried populating a List with the values from the ...
I can't seem to get my head around this one. I'm using HttpWebRequest to try and send some data out to another site. I'm attempting to figure out the best way to get our firewalls configured, but I'm at a loss. By watching the NetMon trace, it appears as though it's ignoring what I tell it; the HTTP headers I see go out from the request ...
So I've run into a snag, apparently the get_events method is only "included" with the ExtenderControl class.
What I need to do:
Be able to call the get_events Javascript method using a ScriptControl since using an ExtenderControl isn't really possible at this point.
I am hoping there is an easy way to have the scriptControl's javascri...
Like every other web developer on the planet, I have an issue with users double clicking the submit button on my forms. My understanding is that the conventional way to handle this issue, is to disable the button immediately after the first click, however when I do this, it doesn't post.
I did do some research on this, god knows there'...
I using SiteMapPath with an xml file for data. I would like to use the same file for another menu, but I need to have more information attached to each node.
<siteMapNode target="_blank" url="~/Default.aspx" title="Home" description="Home Page" >
VS
<siteMapNode url="~/Default.aspx" title="Home" description="Home Page" >
So far it d...
Further to my question on disabling validators using javascript - http://stackoverflow.com/questions/400346/disable-asp-net-validators-with-javascript ...
Does anyone know how to pass through a gridview in javascript to dynamically disable the validators on each row. I now understand that I'll need to use ValidatorEnable(validatorContro...
I've built web sites using classic ASP, ASP.NET web forms and lately ASP.NET with ExtJS. However, I've always felt that I've had to do a lot of the heavy lifting and that there was no real RAD until the application was fairly mature.
I've only briefly looked at RoR and Django, but they look like a step in the right direction. Does anyo...
I am loading a Microsoft CRM 4.0 window from an Intranet page using window.open(...).
When the window closes, I need it to programmatically press a button on the page that opened it. I can do this from my own form by getting the button (whose name is passed in the querystring) and executing its click method in JavaScript.
I thought I c...
Say I have two script controls and one control has the other as a child control:
ParentControl : ScriptControl
{
ChildControl childControl;
}
The script for the Child Control:
ChildControl = function(element)
{
ChildControl.initializeBase(this, [element]);
}
ChildControl.prototype =
{
callMethod: function()
{
ret...
I've tried Infragistics on this but they don't seem to understand what I am asking and it takes days to get an answer so please help!
I need to place an Infragistics web grid into either a div or a table cell. The grid must size to fit the div or cell. If there is too much data to display, I need the grid to do its magic and add its own...
Could someone point me to a list of controls that implement IPostBackDataHandler?
I want to know what controls implement this interface and what properties the controls will set during the Postback.
For example:
Textbox : Text
DropDownList : SelectedIndex
I'm basically looking for a list of properties that will not be saved ...