Aps.NET Calendar control Background

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi! All

Can anyway we provide a backgroud image to ASP.NEt Calendar control??

Thanks in advance.

Regards,
Baren
 
Hi Baren,

Sure, just add an attribute:

Protected Sub Page_Load _
(ByVal sender As Object, _
ByVal e As System.EventArgs)
Calendar1.Attributes.Add("background", _
"http://www.gc.ca/images/rollingflag.jpg")
End Sub

Let us know if this helps?

Ken
Microsoft MVP [ASP.NET]
 
Hi! Ken,

Thanks a lot...

Regards,
Baren

Ken Cox - Microsoft MVP said:
Hi Baren,

Sure, just add an attribute:

Protected Sub Page_Load _
(ByVal sender As Object, _
ByVal e As System.EventArgs)
Calendar1.Attributes.Add("background", _
"http://www.gc.ca/images/rollingflag.jpg")
End Sub

Let us know if this helps?

Ken
Microsoft MVP [ASP.NET]


Baren said:
Hi! All

Can anyway we provide a backgroud image to ASP.NEt Calendar control??

Thanks in advance.

Regards,
Baren
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Asp.NEt Calendar control 2
.NET Questions 1
StyleSheet 2
Best ASP.NET Create PDF Control? 2
ASP.NET and ASP Conversion 4
ASP.NET timeout cancelled. 4
Mime Type 1
Page State 1

Back
Top