I'm unable to understand your question. How can one convert div to image? :omg:
Chetan Patel Sai Soft wrote:
my div become a image
According to me, this is simply not possible. :laugh:
I'm unable to understand your question. How can one convert div to image? :omg:
Chetan Patel Sai Soft wrote:
my div become a image
According to me, this is simply not possible. :laugh:
Christian Graus wrote:
There is an enabled property
There's no Enable property for individual tabs, but it is for whole tab control.
Christian Graus wrote:
sounds like you want a wizard
I don't have any idea about this 'wizard' thing... Ss it available for win app (as it is in web app)? If you mean to say 'wizard' like something, then yes, i want to do somewhat that kind of thing...
I'm currently using this 'setting a flag' option. But i thought, there may be some another option for this... so i did asked the question. Thanx for help...
Hi, I'm building an application which has 3 forms (really large input data required, huh). I have put these 3 forms in a tab control. Now the requirement is, before filling form 1, i cannot move to form 2 & so on. So, can i disable the tab 2 & 3? I don't want to disable all group controls. It would be nice if i can stop the user from going to those tab panes. I can enable tab 2 after clicking button 'Next' which is in tab 1. Same thing i have to repeat for tab 2. obviously, i can use 2 forms by show & hide tactic, but for some reason, it would be nice if i can use Tab control. :) Thanx in advance...
1> Add .sitemap file to ur project It's an XML file... Just form tree of document as per ur requirement.... 2> Add SiteMapDataSource from Toolbox That's it... now u can use this DataSource for Menu, SiteMapPath or TreeView control... :)
No, i'm not getting it right... the stream i captured from HttpContext.Current.Response.OutputStream does not have anything... Can u show me, how to process that stream... Thank You...
U can add hit-counter to application state bag Application.Add("HitCount", 0); Now, u can retrieve this value any time, then do whatever u want & update the value int hitCount = Convert.ToInt32(Application["HitCount"]); hitCount++; Application["HitCount"] = hitCount;
Hello, I'm working on a project which requires to capture the Html output page. Since it's website, i cannot override Render method of each & every page. So i decided to go for IHttpModule. Can anyone help me, how should i achieve this? :confused: :confused: