i have number of queues , priority queues in application. access nth items in these queues, don't see easy way using api. guess create iterator , iterate nth or use toarray()[index]--but seems there should easier way. am missing something? am missing something? yes - fact accessing elements index not part of concept of queue. if need access elements index, want list, not qeue.
i have created handler process .html pages in asp.net c# web application. use url rewriting concepts. handler works fine when html requrest come server/website. coding details follows: web.config handler code: <add verb="*" path="*.html," validate="false" type="myproject.contenthandler,myproject" /> contenthandler.cs code: public void processrequest(httpcontext context) { string strmappage = string.empty; if (context.request.url.tostring().contains("category")) { strmappage = "/links.aspx?id=" + producid; } else { strmappage = context.request.url.tostring(); } context.server.transfer(strmappage); } this method works fine .html request page http://localhost:9111/user-category-1.html when try open page '/js/tinymce/imagemanager/index.html' throws error "error execut...
Comments
Post a Comment