|
Well, you went all quiet when I asked if it was legal. I appear to be spot on. This is your college project, we've explained exactly how to do it. If you're stuck, post specific code and explain why you';re still stuck. Don't just ask us for code, if you're in college, you can surely understand the explanations we've given ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
{
image1.AlternateText = Request.QueryString["art"];
image1.ImageUrl = Request.QueryString["imgg"];
label2.Text = image1.AlternateText;
string loc = Request.QueryString["u"];
Panel1.Controls.Add(new LiteralControl("<OBJECT width=312px height=248px CLASSID=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6 VIEWASTEXT >"));
Panel1.Controls.Add(new LiteralControl("<PARAM name=autoStart value=False>"));
Panel1.Controls.Add(new LiteralControl(@"<PARAM name=URL value="+loc+">"));
Panel1.Controls.Add(new LiteralControl("</OBJECT>"));
}
i got it....actually i was using Response.Write what actually showing controls in browsers but not master page contents....now using this literalcontrols i did but still problem is that it's not playing the song....n my url is perfectly right........
|
|
|
|
|
even i checked still not playing...is it coz im using literalcontrols.....and when im using this code in source it's playing perfectly well
Panel1.Controls.Add(new LiteralControl("<OBJECT width=312px height=248px CLASSID=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6 VIEWASTEXT >"));
Panel1.Controls.Add(new LiteralControl("<PARAM name=autoStart value=False>"));
Panel1.Controls.Add(new LiteralControl(@"<PARAM name=URL value=F:\Songs\Britney Spears\Circus-2008\01 Britney Spears - Womanizer.mp3>"));
Panel1.Controls.Add(new LiteralControl("</OBJECT>"));
|
|
|
|
|
greendragons wrote: Panel1.Controls.Add(new LiteralControl("<object width="312px" height="248px" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" viewastext="">"));
Panel1.Controls.Add(new LiteralControl("<param name="autoStart" value="False" />"));
Panel1.Controls.Add(new LiteralControl(@"<param name="URL" value="+loc+" />"));
Panel1.Controls.Add(new LiteralControl(""));
Create a literal on the page, then build a string, and assign that string to the one literal. It's neater.
Does your URL have spaces ? Should it be in quotes ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Yes did that but i wanna include location value in quotes unless it won't play....but if i'll put quotes in between it will terminate the string....how to include quotes......
|
|
|
|
|
Add \" to encode a double quote, or single quotes if you can.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
|
Hi,
I have the following string in a XML file..
</BODY></HTML> ------_=_NextPart_002_01C84D7E.9133E008-- Content-Disposition: attachment; filename="footer.txt" Content-Transfer-Encoding: base64 G:\Test\Attach\footer.txt --------------Boundary-00=_BLD1cvEPKmuNkgPvUNY3--
Content-Disposition: attachment; filename="Press list for partners.xls" Content-Transfer-Encoding: base64 g:\Test\Attach\Debankan\Press.xls ------_=_NextPart_001_01C84D7E.9133E008--
I will pass the filename and i want to get the path from the above string.. For ex.. if i pass "footer.txt" i want the result path as "G:\Test\Attach\footer.txt".. Can someone help me out?. I will be using C#. Can someone tell what String Methods will be useful.. Please it quite urgent..
Thanks
Raja
|
|
|
|
|
Jollyguy wrote: Please it quite urgent..
This is not urgent but rude.
And how is this related to ASP.Net?
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
|
Hi,
I am inserting in database using ASP.Net. But the insertion in the tables is not happening in the order of insertion. Please help me how to insert in order.
for()
{
for()
{
for()
{
//method to insert(like Physics1A)
}
//method to insert(like Physics1)
}
//method to insert(like Physics)
}
I want in this order.
Class
Physics1A
Physics1B
Physics1C
Physics1
Physics
Chemistry1A
Chemistry1B
Chemistry1
Chemistry
But it is not inserting in this order. Please help me.
|
|
|
|
|
The above tells us almost nothing about what you are trying to achieve. Post the code that you have tried, and pointing out the areas that do not work. Do not expect someone to write your code for you.
|
|
|
|
|
Why is the insert order important? The select should be responsible for the order the data is presented in.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Actually i am selecting in order and insertion also happen in order as per as the code. But in the table instead of going to last row of the table it is inserting in the middle of the other rows. For example, it is inserting like this,
Physics1A
Physics1C
Physics1B
Chemistry
Chemistry1
Physics
Chemistry1C
Physics1
Chemistry1A
Chemistry1B
But i want in this order.
Physics1A
Physics1B
Physics1C
Physics1
Physics
Chemistry1A
Chemistry1B
Chemistry1
Chemistry
I am using cmd.ExecuteNonQuery() for insertion is it giving a problem?
Can i use anything other than that?
|
|
|
|
|
Add an identity column to your table, then select back ordered by the identity column. I bet they are in the order you inserted them. A select without an order by is not guaranteed to return the records in any specific order (although generally it will be in the order of the PK idf there is one). Thats what is happening in this case, they are inserted in the order you do them (if its not the order you think then your code is wrong), but you do not define the order when you select them back, hence the difference.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
How to put an identity column to my table? Please help me.
I don't have primary key defined. For this is it giving problem?
|
|
|
|
|
I have told you what to do, and also that there is no problem. To find how to put an identity column on the table try google, I'm not dong the entire job for you.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
They will insert in the order you insert them. However, as someone else said, if the order they come out matters, and it's not alphabetical, you should use an index to sort by to specify the order from.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
for()
{
for()
{
}
}
I think you need to do it by nesting two foreach loops...You dont need 3 nested loops for doing this.. .
|
|
|
|
|
Hi Devs,
The code below works fine in IE . It basically embeds swf file onto aspx page, but when i try this on Firefox - it doesn't work
<object id="myMovieName" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
height="100%" width="100%" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" >
<param name="_cx" value="994" />
<param name="_cy" value="1482"/>
<param name="FlashVars" value=""/>
<param name="Movie" value="..\test.swf"/>
<param name="Src" value="..\test.swf"/>
<param name="WMode" value="Window"/>
<param name="Play" value="0"/>
<param name="Loop" value="-1"/>
<param name="Quality" value="AutoHigh"/>
<param name="SAlign" value=""/>
<param name="Menu" value="-1"/>
<param name="Base" value=""/>
<param name="AllowScriptAccess" value="always"/>
<param name="Scale" value="exactfit"/>
<param name="DeviceFont" value="0"/>
<param name="EmbedMovie" value="0"/>
<param name="BGColor" value=""/>
<param name="SWRemote" value=""/>
<param name="MovieData" value=""/>
<param name="SeamlessTabbing" value="1"/>
<embed src="..\test.swf" flashvars=""init=yes&check=true"" quality="high" bgcolor="#FFFFFF"
width="100%" height="100%" name="myMovieName" scale= "exactfit" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
Any Ideas ?
Thank you
|
|
|
|
|
make sure flash plugin is installed on fire fox.
|
|
|
|
|
yeah thats not the problem.
|
|
|
|
|
From forum posts, the MSDN article below seems to be the most popular solution to saving classic ASP session state data to a SQL Server.
How to Share Session State Between Classic ASP and ASP.NET
The sample code and instructions are very straightforward. Unfortunately after attempting to implement the solution several times, the classic ASP page still isn't storing the session data to the database as promised. Has anyone used this solution and actually gotten it to work? If so, were there additional steps taken?
Also if you didn't use this solution to save classic ASP session date, what method did you use?
Thanks a million.
|
|
|
|
|
I've done this by writing a service that both the asp and asp.net code can talk to
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I was looking for a dashboard where I'll have couple of odometer's where the number's on each are dynamic pulled from database and the needles point to the current number which comes from database as well. On the Odometer there will also be a legend showing 2008 and 2009. There will be two needles one that shows the 2008 values and the other that shows the 2009 values. How can I achieve this? Either in Classic ASP or in .NET. Is there something already built that I can use like a third party control or is this something that can be written from scratch in .NET?
Thanks!
|
|
|
|