-
Hi all, We are developing a web application using .Net framework 3.5 . We are using devExpress Asp.net controls to enrich our UI. But while we load test our application, we found that memory consumption of w3wp.exe process increases if even a small group of people are accesing the website . So, I thougt...
-
Hi; I am working in a small development center in Cochin. We have many windows based nonbanking financial (NBFC) products which are developed in vb.net. We are planning to convert those into web based applications. Is that required to do the coding in C#.net or can we maintain the same classes &...
-
I had created a ajax enabled web site in ASP.NET 3.5 using Visual Studio 2008. All ajax functionalities is working correctly in my development machine. But when i uploaded it to GoDaddy(Shared hosting), the whole thing ended up in a mess. In their help section they had mentioned the following "...
-
How can I create a dropdown list (HTML SELECT) control with OptGroup like this. <select id="infos"> <optgroup label=”Content”> <option value=”Content”>Javascript</option> <option value=”Content”>Page Error</option> <option...
-
Hey Shoban, Thanks for that input. Fundamentally, I'm not looking for a cheap hosting but trying to find out whether in the long run does the technology choice run the clients into benefit/trouble. For instance, consider a scenario where after running the web app for a year or so you need to put...
-
Hi, Purely from an ongoing hosting & maintenance expense perspective, is there a huge (or even medium for that matter) difference if the website is developed in ASP.NET as against PHP? Is there any scenario where one technology is preferred over the other from an on-going cost perspective? Thanks...
-
Is there any problem in this class design? public class Users : List<users.user> { public class User { public int UserId { get; set; } public string UserName { get; set; } public string Password { get; set; } public string Email { get; set; } } }
-
Is there any way to display Power Point slides in an ASP.Net or SharePoint Page. I tried to export it as JPG and tried a slideshow using Images, it works fine. But I am missing the animations in slides. Is there any way to do this? Any converters Flash / Silverlight etc. I got a PPT 2 Silverlight converter...
-
Hi All I want to check a remote file exists using ASP.Net, its in a different web application. I was using a code like this. using (WebClient client = new WebClient()) { try { Stream stream = client.OpenRead("http://localhost/dynamicweb2/quote12.png"); if (stream != null) { //exists } } catch...
-
Hi all, In my new project, we have a requirement of template based document creation. Based on a predefined template( containing of text and images) selection, we have to create document files and then it should have a review approval process like in a standard document management system. The user can...