2
Answers

Webservice Problem

Shyju Raju

Shyju Raju

16y
2.4k
1
I had deployed my Webservice on our Intranet, but i am not able to invoke webmethods in my Webservice from other computers connected in Intranet, I am able to access Webservice only on the computer on which I created Webservice. So please tell me the way to access it from all other computers connected in our Intranet. Should I make any change in this line of WebServices [WebService(Namespace = "http://192.192.7.171/webserviceeg")]
Answers (2)
0
Mohammed Ismail

Mohammed Ismail

NA 3 0 18y
Hi Kavita:

For your second question removing of previous and next month days:  you can not remove them but you can hide them by setting those days back and forecolors using OtherMonthDayStyle attribute of Calendar.

Eg: <OtherMonthDayStyle ForeColor="Blue" BorderStyle="None" BorderColor="Blue" BackColor="Blue"></OtherMonthDayStyle>


But those cells are selectable in order to suppress this, add this in DayRender event of calendar:

if (e.Day.IsOtherMonth==true)
   {
    e.Cell.BackColor = System.Drawing.Color.Blue;
    e.Cell.ForeColor = System.Drawing.Color.Blue;
    e.Day.IsSelectable = false;
  }


in Page_Load event add this:

Calendar1.Attributes["onMouseDown"] = "JavaScript:Void(0);";

try out this.