It might be you have used Forms Authentication in your application. Put another Web.config file in your Images folder and remove the Authentication from that file.
R
Ravindra Nidhonkar
@Ravindra Nidhonkar
Posts
-
Not loading Images in login page web application -
Retrieving checkbox value from dbRemove the
break;
statement from the For each loop. -
Link Button on User Control not firing?Try following code:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
LinkButton lnk = new LinkButton();
lnk.Text = "My Link";
lnk.Click += new EventHandler(lnk_Click);
plcHld.Controls.Add(lnk);
}void lnk\_Click(object sender, EventArgs e) { lblMessage.Text = "Link Clicked"; }
-
Link Button on User Control not firing?As you said the Link button is created Dynamically, you have to create it Every Time when the page is post back, also create it in the Init event of the user control.
-
Download multiple Xml fileFollowing code should solve your problem:
Response.Clear();
Response.ContentType = "text/plain";
Response.WriteFile("D:\\ADIB\\OutputXML.xml");
Response.Flush(); -
Add scrollbar to listbox/Treeview after specific height.Add follwoing style to get scroll bar:
style="overflow: auto"
-
how to do validation of radiobuttonsYou can use Required field validator control... Enjoy coding....