Now in the same project for another requirement I have to introduce Antlr3.StringTemplate.dll. Which has a dependency on another version of the above assembly.
If I use the version of Antlr3.Runtime.dll which satisfies NHibernate , Antlr3.StringTemplate starts complaining and vice-versa.
I have a facade class that my controller class calls out to and in that facade class, for whatever reason, I'm building a string a href element. And it resolves fine in casini but when it gets out in the real world like localhost it doesn't work. Is there a way to do this?
I am currently localizing my MVC website, using the Html.Encode method.
I've got a global resouce named "Localization" and using it by e.g. <%= Html.Encode(Resources.Localization.FirstName) %>
When compiled and viewing in the browser it works perfectly, but in VS 2008 Development Edition it marks it red and displays Cannot resolve symbol 'Resources' when hovering it.
I am writing a dynamic control that I want to pass in something along the lines of the following:
HyperLink myLink = new HyperLink(); myLink.NavigateUrl = "/Home.aspx?id=<%= DataBinder.Eval("PageId") %>"; myLink.Text = "The link"; myControl.Controls.Add(myLink);
I want to be able to resolve the myLink.NavigateUrl at run-time according to the context that myControl puts the control into in the end (this is not a WebControl and therefore adding to the collection of controls doesn't output to page).
I m receiving the following error when adding toolkitscriptmanager to my asp.net, thus i have installed all the needed dll's and if i create a new solution and use them it will work perfectly but if i add them to an exsting project it is giving me this errormoreover if i will run the application it will run without errors but the problem is if i add any new asp control likt textbox will not be available in the code behind but wheni remove the toolkitscriptmanager it works fine VS 2008 if any one know what is the solution
I am running an aspx page and keep getting this following error
[code]...
I am having issues trying to resolve this as the aspx page only has 129 lines and the vb page behind only has 28 lines. Can any point me in the right direction to track this error down
I've been using the Item Inserted event for my data controls, such as details view. I'm wondering if there are advantages to doing this with the data sources instead of the data control. There is a lot of overlap in the events provided by these two types of controls. Are there advantages to using the events raised by the data source instead of the ones raised by the data control itself. Should I be using the events raised by the data source instead of the control used to enter the data?
I have an ASP.NET MVC web application running in IIS as a subweb; let's say its path is something like http://mysite.com/subweb.
I have a view which serves content obtained from a CMS. The CMS editor has entered some content containing a relative image path <img src="/images/imga.png" />.
This works fine on the production server where the site is the root website, but not on the staging server where the site is a virtual directory under the root website
The path should be <img src="/images/imga.png" /> on the production server
and <img src="/subweb/images/imga.png" /> on the staging server.
Is it possible to use the <base> tag to resolve this image path?
It doesn't seem to work. Can anyone explain why or if this is a workable approach? I don't want to require the content editor to have knowledge of the website deployment option (which changes between UAT and production).
i have deployed my website in windows 2003 server. my cliets are working on that.every day night i restart the machine untill that there is no problem. if i have not restart the machine then soon my clients recive "PAGE CANNOT BE DISPLAYED". if i restart the machine then the issue is solved. i want to know the issue which makes the site "page cannot be displayed" and i want to resolve the issue with out restarting.
Using VS2008 and R# 5 I'm running into an odd situation, where on an aspx page I keep getting
Cannot resolve symbol 'symbolname'
But the code compiles and runs fine. While having a fix for this would be great, I'm just trying to figure out if I'm losing my mind.
The CodeFile directive and Inherits directives are fine. If I compile the app or just let devenv sit for a bit it'll go away, but as soon as I save the aspx [via ctrl+s] R# suddenly has trouble with the Inherits attribute and flips out on every method in the page (OnClick etc).
// Anonymized of course but otherwise intact <%@ Page AutoEventWireup="true" CodeFile="TestPage.aspx.cs" Inherits="TestPage" Language="C#" MasterPageFile="~/MasterPage.master" Title="Test Page Title" %>
This is mostly just a grievance, because since the code compiles it doesn't stop me from doing what I need.
I would post a bug report to the JetBrains site but first I would like to know I'm not alone. It could be my machine. Maybe when I roll to VS2010 in a couple weeks this will go away?
This is a head-scratcher. I've got two projects open. In one of them I have no trouble incorporating DesignTimeResourceProviderFactory but in the second project I get the above error. Adding using System.Web.UI.Design does no good; "Design" is red and the rest is grayed out. No problem importing System.Web.UI though.
I was working with the previous version of the AjaxControlToolkit (I had the source project in my solution, just in case I needed to debug something) and everything worked ok, now I've downloaded the lastest build (40412) and I've choosen to remove that project and only use the binaries (of 40412). I added this line in the web.config (inside <controls>) to have it prepared for all the pages, and avoid the need to use the @register in each one of them <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxtoolkit"/>
I don't know what should I write as PublicKeyToken, I'm getting Cannot resolve symbol 'AjaxControlToolkit' and, of course, my UserControls that use the AjaxControlToolkit are giving me error.
I am using ajax rating control, but i get the following error on change of rating , the funnest part is i get this error for every alternate submission, 1st time i click on rating stars it happen without error but 2nd time i do the same then error throws, for 3rd time no error , for 4th time again error and it continues "An unhandled exception has occured:
The target 'ctl00$ContentPlaceHolder1$dList$ctl00$Rating1' for the callback could not be found or did not implement ICallbackEventHandler." hope i get an ans for this funny kind of issue.
I have two themes in my .Net application, both use the same background image. Both have an images folder with this image in them, both have style sheets. One works and one doesn't but ONLY when deployed in IIS in a Virtual Directory scenario so there is an added /MyApp/ directory.
I can't seem to even trick the one that doesn't work into finding the image. My style looks like this:
body { margin:0px; font-family: Trebuchet MS, Verdana; font-size: 12px; font-style: normal; background: #fff url(images/mainbg.jpg) repeat top left; }
I am trying to figure out if it's possible to resolve schemas for tables within a Stored Procedure. If not, I was wondering if maybe I can find a better solution here. Here is my scenario.
I have an application that will access a SQL database that will be used by different organizations within my company. The database will only a have a few tables but it has many stored procedures that will call them. The different organizations will each have their own SQL User and schema with the tables duplicated for each schema. While each schema will have its own set of tables to separate data between the organizations, I do not want to make a copy of each stored procedure since the logic will be the same. I would like the schema to be resolved by the user that is accessing the database. If I do inline SQL within the application it resolves with no problem but using a Stored Procedure will always run it under the owner of the sp, causing it to throw an invalid table name error.
Is there anyway to resolve this or is this just the functionality of MS SQL? Are there any workarounds out there (other than Dynamic SQL) that I can use?
I have a fresh install of 10g ODAC that I have loaded. My Oracle client interface connects to the db just fine but when I attempt to connect with my ASP.NET project, I get the following error: ORA-12154: TNS:could not resolve the connect identifier specified
I'm trying to create an XmlReader class instance to read an xml file. However I pass it a url for the xml file but it isn't resolved. what do I have to do to get the proper url?