Hi
I am using visual web developer 2008 Express on vista.
I have a local version of DNN 04.09.01 with the Store module 02.01.00 installed (which is all running fine)
I finally got a clean build of the whole site after excluding AddressEdit.ascx and AddressEdit.ascx.cs
In starting to make changes to the store code, i have been hitting upon the same issue for some hours now and thought i'd finally ask you guys in the Forum !
My issue is that my code changes "do not stick" ..
I am making changes in ProductEdit.aspx.cs and after realising that my code was not being executed... At the page load event, (at about line 83) i replaced it with a simple Response.Write("Code gets to here"); Then done a rebuild, but again the code changes are not apparent.
Other trial and errors
1) I even deleted all the files in C:\Users\Nigel\AppData\Local\Temp\Temporary ASP.NET Files and done another rebuild to no avail.
2) I deleted DotNetNuke.Modules.Store.WebControls.dll from the /bin hoping a rebuild would re-compile it. But i soon had to copy it back again
Also, In the aspx i have tried Codebehind="ProductEdit.ascx.cs" and
Codebehind="~/DesktopModules/Store/ProductEdit.ascx.cs"
However the IDE cannot "see" other objects in the .cs on approx line 100 onwards.. such as:
cmbCategory (underlined red) - The name "cmbCategory" does not exist in the current context.
cmbCategory is an existing dropdownmenu which of course already exists on the aspx page.
I would like to note that for example: <portal:URL id="image1" runat="server" width="300" /> is not "missing" in the .cs where as
<asp:DropDownList ID="cmbCategory" .... "does not exist in the current context.." in the .cs
QUESTIONS
1) With VWD 2008 Express edition - can i not rebuild the Store dll's ? that form part of the
namespace "DotNetNuke.Modules.Store.WebControls"
2) What else am i doing wrong that means my code changes are not implemented?
Thanks very much for any comments or solutions