Click here to Skip to main content
15,915,611 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: PHP stuff Pin
Christian Graus21-Sep-07 2:10
protectorChristian Graus21-Sep-07 2:10 
Questionasp and ajax control confuse Pin
mmm!@#18-Sep-07 21:41
mmm!@#18-Sep-07 21:41 
AnswerRe: asp and ajax control confuse Pin
milpo21-Sep-07 2:20
milpo21-Sep-07 2:20 
QuestionRe: asp and ajax control confuse Pin
mmm!@#23-Sep-07 19:02
mmm!@#23-Sep-07 19:02 
QuestionHow to convert an ASPX page to PDF page? Pin
That's Aragon18-Sep-07 19:32
That's Aragon18-Sep-07 19:32 
AnswerRe: How to convert an ASPX page to PDF page? Pin
Manuel F. Hernandez20-Sep-07 7:58
Manuel F. Hernandez20-Sep-07 7:58 
GeneralRe: How to convert an ASPX page to PDF page? Pin
milpo21-Sep-07 2:24
milpo21-Sep-07 2:24 
Questionaspx page & javascript, Fusion Charts Pin
rcwoods18-Sep-07 11:53
rcwoods18-Sep-07 11:53 
Hi
Im using Fusion Charts.
My problem is that i have a page that generates a chart BUT the page itself does not seem to be able to store the value of a variable. Cos I want to print out the objects values in a panel next to the chart.
It looks like the Fusion Chart uses Javascript, i dont know if this is the problem here.

What i think could solve my problem was if i could create a page within a page. So ie. my panel could be in one page and the chart in another.Kind of like Outlook. If this will help, will someone please help me out with how to go about doing this??

here is my code,in case problem is with the code:
string username;<br />
        username = Request.QueryString["Username"];<br />
        lblUsername.Text = username;<br />
        //following gets the specific users dailycount for the last week<br />
        PCUserDetails[] userArray = dbComponent.GetWeeksUsage(username);<br />
        <br />
        //xmlData will be used to store the entire XML document generated<br />
        string xmlData;<br />
        xmlData = "<chart caption='MP3 Usage For the Week' labelDisplay='ROTATE' slantLabels='1' formatNumberScale='0'>";<br />
<br />
        //loop running through each object result in array of users, and creating rest of xml<br />
        foreach (PCUserDetails user in userArray)<br />
        {<br />
            //Convert data to XML and append<br />
            xmlData += "<set label='" + user.LogonDate + "' value='" + user.Mp3FileCount + "' />";<br />
            <br />
        }<br />
        //Close <chart> element<br />
        xmlData += "</chart>";<br />
<br />
        //Create the chart - Column 3D Chart with data contained in xmlData<br />
        return InfoSoftGlobal.FusionCharts.RenderChart("FusionCharts/Column3D.swf", "", xmlData, "CountMp3Week", "400", "300", false, false);<br />
    }


Thanks
Questionmysql error and php header Pin
militiaware18-Sep-07 1:38
militiaware18-Sep-07 1:38 
AnswerRe: mysql error and php header Pin
Johnny ²19-Sep-07 10:00
Johnny ²19-Sep-07 10:00 
GeneralRe: mysql error and php header Pin
militiaware19-Sep-07 20:25
militiaware19-Sep-07 20:25 
QuestionDifference between window.alert() and alert() Pin
NeerajSharp18-Sep-07 0:24
NeerajSharp18-Sep-07 0:24 
AnswerRe: Difference between window.alert() and alert() Pin
Fred_Smith18-Sep-07 1:06
Fred_Smith18-Sep-07 1:06 
GeneralRe: Difference between window.alert() and alert() Pin
NeerajSharp18-Sep-07 2:54
NeerajSharp18-Sep-07 2:54 
AnswerRe: Difference between window.alert() and alert() Pin
Paddy Boyd18-Sep-07 1:17
Paddy Boyd18-Sep-07 1:17 
GeneralRe: Difference between window.alert() and alert() Pin
Member 430602618-May-11 5:59
Member 430602618-May-11 5:59 
QuestionHow do I open a specific port in a Web Server? Pin
pubududilena18-Sep-07 0:11
pubududilena18-Sep-07 0:11 
Questionweb designing Pin
ananthapai17-Sep-07 23:58
ananthapai17-Sep-07 23:58 
QuestionRun Exe file on page lode Pin
Sachin Pimpale17-Sep-07 21:34
Sachin Pimpale17-Sep-07 21:34 
AnswerRe: Run Exe file on page lode Pin
daveyerwin18-Sep-07 5:14
daveyerwin18-Sep-07 5:14 
GeneralRe: Run Exe file on page lode Pin
milpo21-Sep-07 2:34
milpo21-Sep-07 2:34 
QuestionHow to make the page fit regardless of resolution ??? Pin
devboycpp17-Sep-07 13:10
devboycpp17-Sep-07 13:10 
AnswerRe: How to make the page fit regardless of resolution ??? Pin
Johnny ²17-Sep-07 21:35
Johnny ²17-Sep-07 21:35 
GeneralRe: How to make the page fit regardless of resolution ??? Pin
devboycpp17-Sep-07 21:46
devboycpp17-Sep-07 21:46 
GeneralRe: How to make the page fit regardless of resolution ??? Pin
Johnny ²18-Sep-07 0:06
Johnny ²18-Sep-07 0:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.