Hello All
I am using the code as shown below
<frameset cols="25%,75%">
<iframe name="frame1" src="http://dotnetfunda.com">
<iframe name="frame2" src="http://www.yahoo.com">
</frameset>
If i use it is okay but now i am tring to get the src(source) from .aspx.cs page
protected void Page_Load(object sender, EventArgs e)
{
int p1 = DateTime.Now.Year;
int p2 = DateTime.Now.Month;
int p3 = DateTime.Now.Day;
URL= "http://hqbusa0369/data/import/NBE/PROD/from_EDI/arc/" + p1 + p2 + p3 ;
}
I want to use that URL as source for frame1.....
Please help for how i have to use that...
Thank you in advance
Regards
Kondapalli Srinivas