asp.net - how to clear error timer -
i have designing in web page. have use timer control in asp.net .the error occur how clear error how run timer
my code
public partial class _default : system.web.ui.page { protected void page_load(object sender, eventargs e) { } } public interface ischeduleditem { void addeventsininterval(datetime begin, datetime end, arraylist list); datetime nextruntime(datetime time); }
the error type or namespace name 'arraylist' not found
add reference system.collections project, , using statement system.collections.
Comments
Post a Comment