Configuration :: Web.cong Is Not Showing Red Color And Intelligence?
Feb 11, 2011In my vs2008 web.cong content is displaying black and intelligence is not working.So i uninstalled it and again re-installed.But did not work.
View 2 RepliesIn my vs2008 web.cong content is displaying black and intelligence is not working.So i uninstalled it and again re-installed.But did not work.
View 2 Repliesvisit this website:
[URL]
it is in Persian Language(IRAN).the problem is the menu(blue color) is not showing the contents in some browsers on some computers.?
I am exporting an ASP.NET datagrid to excel and having an issue with the colors exporting with it. I know in order for the cells color to be exported to excel you must set the background color of the cell. I have several lines of text in the cell, parts of the text are wrapped in a div and the div background color is set. This is the color I need exported. Is there a way to do this? I have included an example below of what would be found in a cell.
<div style="background-color: #b88eb5;>
Random Text 1
</div>
<div style="background-color: #8ccb83;>
Random Text 2
</div>
I created a new project to test the Microsoft Enterprise Library 5.0. It asks me to select the PROJECT - ADD NEW ITEM - APPLICATION CONFIGURATION FILE. For some reason, I don't see the Application configuration file option.
View 2 RepliesHow come an ASP.Net button "caption" is it's value and a regular html button "caption" comes from the innerHTML.
And why do I not get intellisense for sender.innerHTML in VS?
ASP.Net
Code:
[code]....
when trying to start this in Visual Studio 2010 express I dont get any window of this tool. I wonder why, something seems to be happening as I see two new tray icons. But I cant change anything. I am on a Windows 7 64bit machine. I havent done anything besides installing Visual Web Developer Express 2010.
View 1 RepliesUntil last week it was going smoothly. Now when I make changes to any of the forms it still shows up fine when I hit F5 to run it, but when I install it on the server none of the changes show up. I have uninstalled the site and reinstalled it but the result is the same.
I am using VSTS 2008 and I have tried building this on two machines with the same result. The solution contains a web deployment project and a setup project. Both of which were working fine early last week. This isn't a configuration specific issue because it happens on both. I get no error messages.
I am using custom menu that internally uses javascrip and css. On my development server it is working fine but when I deploy the web application on windows server 2003 (64bit), the main menu is not showing properly for few hours (same day), however form next day of deployment its showing fine.
I am using VS 2008. Net 3.5.
I have implemented a custom error page in my asp.net application. In the ASP.net configruation I have
CustomErrors
defaultRedirect="~/ErrorPages/error.aspx"
/>
but when I attempt to cause an error on my application, I still get the generic asp.net error instead of my custom page.
I am using win 2008 Server with visual studio 2008 ,when i try to save my data through store procedure from my online application it is saving prefect arabic data in database but when i try to save data with inline query through my application is showing like question marks
View 5 RepliesI have two projects in my solution: a) MVC Application b) Class Library. The class library acts as a plugin, so it contains views. The main problem is that I have no intellisense in the view's markup for my classes contained within the class library (the same assembly as the views). In the beginning I couldn't even write <%= Html.RenderAction... %>. I've solved that by adding a Web.config file to the class library with the following section:
<configuration>
<system.web>
<compilation debug="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
</system.web>
Now it recognizes Html.RenderAction, etc in the view's markup. However I've no idea how to get access (with intellisense) to my classes contained within the same assembly as the views
wrote an MVC 2 action which shows json data in the browser when i browse to the URL in my Dev environment.
When i upload it to production and i browse to the same url, i get;
04 - File or directory not found.The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.I have decorated the action with httpget and the url is in the format;
[URL]is the same format in my Dev Environment too..
I installed Visual studio 2008. I want to open Reports. I want to install Business Intelligence development studio for that. May I know how to install that one. Is Business Intelligence development studio comes with Visual studio 2008.
View 3 RepliesI'm about to begin a new asp.net application using .net 4.0. Only concern I have is since the project calls for reporting, I cannot use SSRS with SQL Server 2008 b/c the tempate for Bus Intelligence Projects is missing from 4.0. I've been told that the next release of SQL Server 2011 (some time this year), will resolve this problem. Meanwhile, I'm wondering if the following approach would work:
1) Create the application in VS2010 using the SQL Server 2008 db.
2) Create the SSRS Bus Intelligence project using VS2008 and create a seperate website pointing to the same SQL Server 2008 Db?
Kind of a hack, but I guess the only problem with this is, the Bus Intelligence project will not be able to reference and leverage and DLL or code from the application.
I want to make google like intelligence searching system for searching data from list in my project. i mean when i write something in google bar for searching it automatically start showing some related words in down side. how can i achieve that search in my project? should i use some API ?
View 2 RepliesI have implemented captcha control in my webpage based on the article How to implement Captcha in ASP.Net.
It is working fine when running through the VS IDE, but when i deployed the website in IIS 8 (Windows 8.1) server the captcha image does not show.
I've been working on this project for a few days now, and have been unable to resolve the issue of getting intellisense support for my custom-defined inner properties for a user control (ascx, mind you). I have seen the solution to this (using server controls, .cs mind you) many times. Spelled out in this article very well. Everything works for me while using ascx controls except intellisense. Here's the outline of my code:
[PersistChildren(true)]
[ParseChildren(typeof(BreadCrumbItem))]
[ControlBuilder(typeof(BreadCrumbItem))]
public partial class styledcontrols_buttons_BreadCrumb : System.Web.UI.UserControl
{
...
[PersistenceMode(PersistenceMode.InnerDefaultProperty)]
public List<BreadCrumbItem> BreadCrumbItems
{
get { return _breadCrumbItems; }
set { _breadCrumbItems = value; }
}
...
protected override void AddParsedSubObject(object obj)
{
base.AddParsedSubObject(obj);
if (obj is BreadCrumbItem)
BreadCrumbItems.Add(obj as BreadCrumbItem);
}
...
public class BreadCrumbItem : ControlBuilder
{
public string Text { get; set; }
public string NavigateURL { get; set; }
public override Type GetChildControlType(string tagName, System.Collections.IDictionary attribs)
{
if (String.Compare(tagName, "BreadCrumbItem", true) == 0)
{
return typeof(BreadCrumbItem);
}
return null;
}
}
}
Here's my mark up (which works fine, just no intellisense on the child object declarations):
<%@ Register src="../styledcontrols/buttons/BreadCrumb.ascx" tagname="BreadCrumb" tagprefix="uc1" %>
...
<uc1:BreadCrumb ID="BreadCrumb1" runat="server" BreadCrumbTitleText="Current Page">
<BreadCrumbItem Text="Home Page" NavigateURL="~/test/breadcrumbtest.aspx?iwentsomewhere=1" />
<BreadCrumbItem Text="Secondary Page" NavigateURL="~/test/breadcrumbtest.aspx?iwentsomewhere=1" />
</uc1:BreadCrumb>
I think the issue lies with how the intellisense engine traverses supporting classes. All the working examples I see of this are not ascx, but Web Server Controls (cs, in a compiled assembly).
When I use VS2008 to create a new form application, I am able to go to the Data menu select "Show Data Sources" then the "Data Sources" window appears. Then I am able to "Add New Data Source" and so on. But when I create a new Web Application. I can not do that. Am I not able to create a Data Source on web applications?
View 1 RepliesI am trying to deploy Dundas charts in .aspx to my Godaddy hosting account, but they are not showing up. The Dundas support team said I need to do the following:
If you are not using BinaryStreaming, the ASPNET user must have enough rights to write temporary images on the server's Hard drive.If using Windows 2003, the IIS_WPG user requires Write and Modify permissions.
However, of course the Godaddy support team told me I need a dedicated server to do those things. We are on a tight budget and I have to work with what I have now.
I have a class (let's call it Car) that has a property of type System.Drawing.Color (Call it CarColor). I have a script service function that uses this Car class as a return value, which works just fine. I then have another script service function that takes a Car object as a parameter. I would like to change the color of the car in Javascript, but I am finding it difficult to do so without adding another parameter that takes in the color as a string and is then translated at the server. Are there any ideas on how to set the Color property of the Car object in Javascript and maintain it through to the server?
View 1 RepliesI m using this code
Menu menu = new Menu();
menu.MenuItemClick += new MenuEventHandler(menu_MenuItemClick);
menu.BackColor = System.Drawing.Color.AliceBlue;
But i want that background color of menu should be seprate two Different color red and AliceBlue
I have installed VS 2008 and then i installed sql server 2005 with reporting services. But i couldn't find the Business intelligence projects template in VS 2008. Suprisingly i could find the Business intelligence project template in VS 2005 which was installed automatically when i installed Sql Server 2005 and there ware no other project types like Visual C# etc.show me a way to get the Business intelligence projects template in VS 2008.
View 1 RepliesThis is sudhir i am trying to work on business intelligence and i installed the visualstudio 2008 and sqlserver 2005 .But i am not bale to find the business intelligence template in the visualstudio 2008.
View 1 RepliesI wonder how to add a project template called Intelligence Reports, something like that, to Visual studio 2008. I have SQL 2008 installed. Do I need to install some updates to get Intelligence Reports template to Visual studio 2008 ?
View 1 RepliesSQL Server BIDS client 2005, when launched, displays a "Splash" screen that should allow selection of 1 of 3 apps. I am trying to get to Reporting Services but the launch skips right by and goes into Analysis Services.
View 2 Replies