|
The Problem is that there is a Graph that has a definition That is in a folder 'src' the folder has a subfolder controls in control is an ascx file where a graph is difined using the html. Now the project has an aspx file 'NewGraph' where the ascx file is supposed to be excecuted. the code goes like
public src.controls.cont dngchart;
On Page_Load()
// Set our axis values
dngchart.YAxisValues = iValue;
// Set our axis strings
dngchart.YAxisItems = sItems;
// the colors
dngchart.gcolors=mags;
// Provide a title
dngchart.ChartTitle = "Inventory Breakdown:";
// Provide a title for the X-Axis
dngchart.XAxisTitle = "(units display actual numbers)";
When I try to Copile I get this error:
'Bsc_Test1.src.controls.cont' does not contain a definition for 'ChartTitle'
'Bsc_Test1.src.controls.cont' does not contain a definition for 'gcolors'
'Bsc_Test1.src.controls.cont' does not contain a definition for 'XAxisTitle'
'Bsc_Test1.src.controls.cont' does not contain a definition for 'YAxisItems'
'Bsc_Test1.src.controls.cont' does not contain a definition for 'YAxisValues'.
What could it be?
|
|
|
|
|
If user control has no problem then check that you have register the user control properly and the Id of the usercontrol should be same as in aspx and aspx.cs ........
are you using VS2005/C# 2.0 ? Check it 
|
|
|
|
|
What is Bsc_Test1.src.controls.cont?
What do you mean by its in the HTML? Is it in a server script block or is it the ID of an HTML element (or an ASP.NET control)?
|
|
|
|
|
How can integrate one text box and its result of a live website , multiple times in another webpage ?
I needed to c all the results of differnt queries in same webpage. Is there any websites supporting this ?
Please revert back?
Jaison
Jaison Peter
|
|
|
|
|
I'm not sure what you mean ? You want to take a value from a textbox in a different site ?
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
I would assume he wanted to copy values between windows...
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
no
Suppose a webpage has a textbox and button and an area which shows results after calculating the value that we entered in the textbox after clicking the button.
This same thing.... i need multiple times ....in another webpage.
so that i can c the results of different queries in one single page... right ..
hope u understood .. if no revert back for clarifcation
|
|
|
|
|
Can you use a drawing to illustrate what you are trying to do?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
OK
One webpage which shows results according to the data put inside the textbox.
There is nothing apart from that inside that website.
I want another website which shows same textbox and corresponding result (same thing multiple times)
So that i can able to get the result of different values inside the different textboxes by a single refresh of webpage
Now revert if diagrams needed !!
|
|
|
|
|
Please draw an image.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
If i am not wrong, you are looking for following solution.
1- Create a page and use Webclient DownloadData method to extract the html from the required page.
2- Create a page with multiple frames or iframes and set the url of previously created page.
Regards
Prakash
|
|
|
|
|
I haven't compleatly understand this .. but some what this is right !!
Is there any meathod to do this .. without using code..
i mean some services by some sites ??
|
|
|
|
|
i ll draw .. wait for some minutes
|
|
|
|
|
Sounds like you want to build a control ( assuming a framework that allows this, such as ASP.NET ), and use it over and over in the other page.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
|
Hi everyone,
I know that Roman Kiss has written a very outstanding article regarding the above mentioned title....but it is a little bit to complicated for me. Does anyone know of a more simplified method of getting it working. I would like client to call a asp.net web service which in turn call a remote object....the object should then be passed back to the client's pac for processing...your help will be much appreciated. 
|
|
|
|
|
Hi guys,
I need an image scroller for my site. I google around a bit and came across this one
This One
Its okay apart from a slight problem. I need to to scroll across a particular width and not the whole width of the page. I got around this by placing the scroller inside an iframe. However, I don't want this. i want it to be on main page. Is there any other scroller. I've searched and searched and still haven't found a solutions. Could someone help me out here?
|
|
|
|
|
How hard could one of those be to make? It just adjusts the styles of the image to move them to the left. You could proably program this very easily.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
u can also use marquee tag to move around
<marquee width="75%">
Hello, World
< / marquee >
try this...
Ravi Kant Srivastava
(System Analyst)
HandsOn Technology & Engineering
Gurgaon
(India)
e-mail:ravikant@hte.co.in
|
|
|
|
|
If you want to use outdated IE only markup.....
|
|
|
|
|
Hi all,
Does anyone know what are the advantages & disadvantages of using css positioning (css tables - div) instead of html tables, especially the disadvantages of css tables and advantages of using html tables, taking into consideration that am working on dynamic and big asp.net projects that contains alot of user controls with alot of inside controls (textboxes, labels, dropdowns, ...)
Thanks in advance
|
|
|
|
|
MayyMagdy wrote: especially the disadvantages of css tables and advantages of using html tables
You mean CSS layout that does NOT use tables, but archives the same thing as tables. (?)
Only advantage of html layout I can think of is that in some older browsers CSS support can be bad. Umm, yeah. That's all.
CSS layout is better semanticaly, its easier to read/modify, creates smaller pages... by all means don't use table layout but CSS layout. Tables are meant and best used for displaying tables.
edit: by "some older browser" I mean really historic browsers. For wide-audience sites CSS support is VERY resonable browser requirement. That may not be true in some cases of intranet application, if company is for some reason using really old browsers. But
"Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus
|
|
|
|
|
This might help!
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
Table based layouts works better in some old browsers from a specific era, that have partial css support that prevents css layouts from degrading gracefully. Netscape 4 is the most common example of a browser like that.
For other browsers, i.e. all modern graphical browsers and also browsers that doesn't support css at all, a css layout works best. This includes browsers without a graphical interface, for example how blind people experience the web.
Table based layouts was a revolution for the web, as it allowed for layout in web pages at a time when layout wasn't really supported by html. That time was in the middle of the 90's. That was then, and this is now, when we have real tools for layout so that we don't have to use tables to fake it.
---
single minded; short sighted; long gone;
|
|
|
|
|
Thank you all for help, but still have some questions. about css layout as i know it is based on absolute positions, does this means that if i want to change position for one control or its width this will affect page layout and i'll have to change position of all other controls in this page??????
also i found this article: http://www.decloak.com/Dev/CSSTables/CSS_Tables_01.aspx
any comments on it???
-- modified at 7:39 Wednesday 7th February, 2007
|
|
|
|