Website Graphics Not Working?

Dec 6, 2010

I've uploaded a simple Azure website (am testing out authentication) and have found this:http://mateerweb.cloudapp.net/ (live for next 12 hours or so!)Its supposed to look like this:Problem: How to get the live version looking like the test one on every deploy. After a recompile sometimes it works..

View 1 Replies


Similar Messages:

How To Use For 2d Interactive Graphics

Apr 21, 2010

I'm using asp.net with vb.net on my web application. I also have an SQL database which I need the 2d graphical "game" page to communicate with. Which programming language would be best for this? The user has to be able to click on an item and retrieve information from the SQL database, I don't know if java can link up with SQL

View 4 Replies

.net - Custom Font Styles With C# Graphics?

Jan 10, 2011

I have the following list of fonts:I have no issues with using them vianew Font("XXXX Sans", 21, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel)However, what do i do when i need to use a non-standard font style like light? All that is provided is an enumeration and that is not suitable.

View 1 Replies

Web Forms :: How To Create Quality Web Graphics And Animation

Feb 6, 2010

how to get the best software to use for the following?

(i) Web graphics: Apart from Photoshop what is the best easy to use program (minimum learning curve)for producing quality drawings suitable for a website?I know that there are many graphic programs around but I want one that is easy to use and produces QUALITY drawings.

(ii) Animations: Similarly I am looking for an easy to use animation program. I have used Flash before but I feel that there is a steep learning curve. Is there a better program out there?

View 3 Replies

How To Ensure All Graphics Loaded Before Page Is Rendered

Dec 1, 2010

I can remember reading something on this in a book but I can't remember. How do you ensure that certain graphics have been loaded to the users computer before any of the page is rendered?

View 2 Replies

AJAX :: CalendarExtender Will Not Overlap Other Graphics On Form.

Jan 9, 2011

I have a CalendarExtender that links to Textbox. I can get the calendar to appear below the textbox when the textbox is clicked. That works fine. However, when the calendar appears, I can still see other textboxes/labels/etc. along with the month. This isn't right. The month's graphic should be opaque and I shouldn't see other textboxes or labels or whatever was there. As it is it's difficult to see weekday or dates on the calendar since it's being mixed with labels and textboxes. Why is it doing this?

View 2 Replies

Make Graphs To Display The Data In Graphics?

May 14, 2010

Can we Make Graphs To display the data in graphics in asp.net?

View 2 Replies

Web Forms :: Can Display Graphics Drawing Image By Using Literal

Feb 11, 2011

i had draw a graph, however i want to display it. can display it to literal?

below is my coding:

' Create an in-memory bitmap where you will draw the image.
' The Bitmap is 300 pixels wide and 200 pixels high.
myImage = New Bitmap(1200, 1200, pixelFormat.Format48bppRgb)
' Get the graphics context for the bitmap.
g = Graphics.FromImage(myImage)
g.DrawString(I_fault_all2(i), New Font("Verdana", 12, FontStyle.Bold), Brushes.Black, xInterval * i + 50 + (width / 3), 500)
g.DrawString(I_total(i), New Font("Verdana", 12, FontStyle.Bold), Brushes.Black, xInterval * i + 50 + (width / 3), 500 - height - 25)
' Draw the axes
g.DrawLine(Pens.Blue, 30, 10, 30, 500)
' y-axis
g.DrawLine(Pens.Brown, 20, 500, 490, 500)
' x-axis

here is the coding i don't want as display as below, because it will go to a new screen without header and template.

[Code]....

View 1 Replies

Graphics.MeasureCharacterRanges Giving Wrong Size Calculations In C#.Net?

Apr 21, 2010

I'm trying to render some text into a specific part of an image in a Web Forms app. The text will be user entered, so I want to vary the font size to make sure it fits within the bounding box.

I have code that was doing this fine on my proof-of-concept implementation, but I'm now trying it against the assets from the designer, which are larger, and I'm getting some odd results.

I'm running the size calculation as follows:

StringFormat fmt = new StringFormat();
fmt.Alignment = StringAlignment.Center;
fmt.LineAlignment = StringAlignment.Near;
fmt.FormatFlags = StringFormatFlags.NoClip;
fmt.Trimming = StringTrimming.None;

[Code]....

Now I have two problems.

Firstly, the text sometimes insists on wrapping by inserting a line-break within a word, when it should just fail to fit and cause the while loop to decrement again. I can't see why it is that Graphics.MeasureCharacterRanges thinks that this fits within the box when it shouldn't be word-wrapping within a word. This behaviour is exhibited irrespective of the character set used (I get it in Latin alphabet words, as well as other parts of the Unicode range, like Cyrillic, Greek, Georgian and Armenian). Is there some setting I should be using to force Graphics.MeasureCharacterRanges only to be word-wrapping at whitespace characters (or hyphens)? This first problem is the same as post 2499067.

Secondly, in scaling up to the new image and font size, Graphics.MeasureCharacterRanges is giving me heights that are wildly off. The RectangleF I am drawing within corresponds to a visually apparent area of the image, so I can easily see when the text is being decremented more than is necessary. Yet when I pass it some text, the GetBounds call is giving me a height that is almost double what it's actually taking.

Using trial and error to set the __minimumSize to force an exit from the while loop, I can see that 24pt text fits within the bounding box, yet Graphics.MeasureCharacterRanges is reporting that the height of that text, once rendered to the image, is 122px (when the bounding box is 64px tall and it fits within that box). Indeed, without forcing the matter, the while loop iterates to 18pt, at which point Graphics.MeasureCharacterRanges returns a value that fits.

The trace log excerpt is as follows:

Decrementing font size to 24, as size is 193×122 and limit is 212×64
Decrementing font size to 23, as size is 191×117 and limit is 212×64
Decrementing font size to 22, as size is 200×75 and limit is 212×64
Decrementing font size to 21, as size is 192×71 and limit is 212×64
Decrementing font size to 20, as size is 198×68 and limit is 212×64
Decrementing font size to 19, as size is 185×65 and limit is 212×64
Writing VENNEGOOR of HESSELINK in DIN-Black at 18pt, size is 178×61 and limit is 212×64

So why is Graphics.MeasureCharacterRanges giving me a wrong result? I could understand it being, say, the line height of the font if the loop stopped around 21pt (which would visually fit, if I screenshot the results and measure it in Paint.Net), but it's going far further than it should be doing because, frankly, it's returning the wrong damn results.

View 2 Replies

.net Drawing.Graphics.FromImage() Returns Blank Black Image?

Jun 2, 2010

I'm trying to rescale uploaded jpeg in asp.netSo I go:

Image original = Image.FromStream(myPostedFile.InputStream);
int w=original.Width, h=original.Height;
using(Graphics g = Graphics.FromImage(original))
{

[code]...

View 2 Replies

Working With A Precompiled VB.net Website?

Jan 9, 2011

I am working with a precompiled ASP.net website. I have most of the *.aspx.vb files, but I am missing some of the library files, and only have the DLLs. Can I still selectively compile aspx.vb files? When I just hit build, It errors with 'This application is already precompiled'

View 1 Replies

Website Is Working In IIS But Not In Browser?

Aug 2, 2010

I have deployed my asp.net 2.0 website on IIS, and I tested there by browsing website in IIS and it's working fine. But I am getting the below error while browsing the websiteConfiguration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'xmlns'.Source Error:

<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<configSections>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>

Previously when we used to create a website in IIS, it worked fine. I have checked the website folder in IIS [ By clicking Property > ASP.NET] and the framwework tageted there is 1.1, and it is in read only mode. If the problem is related to this issue than please let me know how to change it.

View 2 Replies

Website Not Working Properly In Mobile

Oct 18, 2010

I have created a simple app with a page having a server side form, three fields and a button that submits and performs two operations - 1) adds the form fields to the database table 2) sends an email. Now everything works fine on the web browser on my machine but when I access the app through my mobile, the page does not seem to work. the UI and all are set but the button click functionality doesnt seem to be working and also the label which is set after a successful submit is already visible and showing the "thank you" message. Am i doing something wrong here? I have checked the app on Nokia Smartphone browser, android phone, and iphone simulator.

View 2 Replies

.net - SQL Server Express Website Not Working?

Feb 25, 2010

I have a new website that I'm trying to deploy. It works great on my local machine, but when I install on the server, it no longer works and I don't get any error messages. I'm using SQL Server Express, but this isn't installed on the server

View 4 Replies

Security :: XML To Access A WebSite Is Not Working?

Oct 16, 2010

I am sending the following xml to access a website and getting the error with the stack. I have spent weeks on it and getting no where. I am willing to pay for the advice as well, as I am getting sick of this!

<?xml version="1.0" encoding="utf-8"?>
<ers uname="---------------" pword="------------------" myAttribute="fooBar" anotherOfMyAttribute="123456">
<SalesNote snType="S" action="INSERT" salesContractRef="" saleDate="09/11/2009 00:00:00" auctionID="14" logBookNums="" landingDecNums="" vesselName="Jessica Louise" vesselPln="BM237" vesselMasterOwner="Cowe D" landingDate1="09/11/2009" landingDate2="" landingDate3=""

[Code]....

View 1 Replies

IIS Configuration :: Website Is Not Working On Network

Feb 19, 2013

i have deployed my new website in IIS when i tested in browser its working fine but its not working on network systems,i have my old website with port 3185 and new one is 3186 , the old one is working fine but the new web is not working

View 1 Replies

Configuration :: Login Not Working After Publishing Website?

Aug 16, 2010

Login not working after publishing asp.net website

I am used default login control, form based authentication and default sqlmembership provider.but in local my site working fine,when i publish it locally in iis means,the login is not working , i don't know what is the reason?

View 3 Replies

Configuration :: Website Stops Working After Few Requests

Jan 27, 2010

I developed and deployed a web application using ASP.NET,C# successfully. The application was running perfectly until few days back. [NOTE: It still works fine on local machine (tested using both development server and IIS)] What happens now is: The website opens perfectly. After few operations which involves database interactions, in all the pages, the pages stop responding. I mean, after a few clicks, if I try another operation the page starts postback for unlimited time period and never gets rendered
and a following message is given: The connection was reset: Firefox 3.5... IE cannot display the web page: IE 7, 8 There is no database connectivity issues. I checked event logs on the web server and found few unhandlled exceptions, I corrected those. Now the event log doesn't show any error. But the problem is same.

I tried accessing the page from web server's browser, everything works fine. Even my boss can browse all pages with no problem (both have Win Server installed). Other machines (mostly XP) can't browse after sometime(as described above). I checked the memory usage, cpu time - NO ISSUES.

View 18 Replies

Security :: Webconfig - Website Not Working On Production Env

Oct 19, 2010

I have created the asp.net application and Hosted on Different Server(i.e Test,Development). its is an Intranet Application But When I tried to Host on Production the WebApplication dont work when I check the "Integerated Authentication" and when I check the "anonymous Access" i get null value for the HttpContext.Current.User.Identity.Name.ToString() returns null. and User.Identity.IsAuthenticated also return false. what changes do I have to make in IIS and Webconfig of my application so that it can run on ProductionSERVER

View 2 Replies

Ajax CalendarExtender Control Not Working In Website

Mar 3, 2011

I have used ajax CalendarExtender in my web site but after uploading it does how show the calander control. I have registered the control on the page itself. The page postback when i click the image on which i applied the control.

View 2 Replies

Configuration :: Published Web Application (website) Not Working

Jun 22, 2010

I have developed an webapplication with some jquery and ajax (client side validations), it works fine when run locally.

But when i publish it to the IIS, the client side execution is not taking place.

Do I need to tweak the IIS to make it work.

I am using VS2008 and .net framework 2.0 on a winxp machine.

I am trying to publish to the local IIS (5.0).

View 4 Replies

C# - Cryptographic Licensing Module Not Working From Website?

Dec 2, 2010

We have developed a small method that pulls a cryptographic key from a signed xml document and then checks the signature using the SignedXml.CheckSignature method.

When run from a command line app the key validates properly. However as soon as I call it from a web app it stops working. Anybody know what could be happening?:

// Verify the signature of an XML file against an asymmetric
// algorithm and return the result.XmlDocument Doc, RSA Key
public static Boolean VerifyLicenceFile(string xmlLicFilePathArg)
{
bool isVerified = false;....

View 1 Replies

Configuration :: COM Component Not Working In Published Website?

Sep 12, 2010

I`m using Microsoft office document imaging library (MODI) in my web application.

I`ve a page where a user uploads an image file and the server code converts this image into text form using MODI. Everything works fine when the website is running through visual studio but when i run it through local iis then i receive an exception.

my code is:

[Code]....

The code is perfectly fine because it works fine through visual studio otherwise when run through IIS i receive an exception at the last line written above saying.

Object isn`t initialized and can`t be used yet.

i didn`t catch the exception at last line because trying to figure out whats exactly wrong.

View 2 Replies

Configuration :: IO Functionality Not Working On Published Website?

Mar 17, 2011

I am writing some IO functionality into my ASP.net page (C#). Basically what Im trying to do is, to get a list of file/folder names from a network share and display them on the webpage.

It works great in my DEV environment, on my machine, but it does not work on the published version on my IIS machine. I have not been able to get it to throw an error (I'll keep trying in the meantime). But, it would seem to me that it is some sort of permissions issue. I have given the ASPNET user admin access on the network machine, that the folder share is located. I have added NETWORK SERVICE (with FULL access) to the security rights of the shares Im trying to access.

View 5 Replies

C# Code To Redirect To A Website 2 If Website1 Is Down Or Not Working?

Jul 13, 2010

here website1 is a sharepoint site and if it is working i want it to be that itself but if not working i want the users to be redirected to another website.

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved