Similar Messages:

AJAX :: Get Older Revisions Of The Source Code?

Mar 13, 2010

How can I get older revisions of the toolkit source code? I only see the latest release and some recent changesets. I don't see any way to browse for older change sets or release sets...

View 1 Replies

How To Improve Coding Style In Code

Nov 1, 2010

give me a feedback on the below coding. I like to know whether i had improved in writing the .net coding.

[code]....

View 3 Replies

Web Forms :: Improve Code To Send Email Using C#?

Mar 3, 2010

I found this code to send email using a contact form; the problem is that after the email is sent the page doesn't display a message indicating that the email was sent successfully. In addition, it doesn't reload (refresh) the page so the actual email remains there.

[Code]....

View 17 Replies

How To Improve The Legacy Code Implementation, Response.Redirect

Nov 19, 2010

here is a legacy code which has following implementation Example1 and Example2.f we try to implement MSDN recommendation then the legacy code fails.

void Page_Load() {
if(condition) {
/// some condition
} else {
RedirectPage(url);
[code]...

View 1 Replies

JQuery :: Get Older Value Of Field Via Jeditable.js Plugin In Mvc?

Nov 18, 2010

i am working in mvc & using jquery.jeditable.js plugin for performing editing in MVCContrib grid.

i am able to get the new_edited_value for the filed via jquery.jeditable.js plugin BUT is there a way to get the older value of the filed which has been updated.

View 2 Replies

VS 2008 Trying To Use Newer MEMBERSHIP Driven Pages In An Older Web App?

Mar 27, 2010

I'm trying to take some pages from one of our newer web apps and put them into an older web site we created several years ago.The newer pages uses the membership provider and has proper roles that allow users access to folders that pages reside in.The older pages do not use the membership provider.It seems to want to access ASPNETDB.mdb - which we do not have in the older site.Where are references to the ASPNETDB.mdb made - I can't seem to find them and I need to turn them off.

View 8 Replies

Configuration :: Can't Get Older Server 2003 Web Applications To Run On Server 2008

Jun 25, 2010

I'm a total noob to anything ASP. I'm a web designer for my county's sheriff dept. and I don't create dynamic pages because out content doesn't require it. In fact, I'm still quite new to web design. The programmer who created the apps has zero experience with IIS7. These apps are designed to run on our organization's intranet server. I'm not having any luck with getting these sites to run properly. I have the sites created with the proper directories. When I click in the right-hand column of IIS Manager to browse to the sites, they launches but don't function as they should. They load up like static pages. I installed .Net 1.1 hoping that would make a difference but it had no effect.

View 4 Replies

How To Improve Coding

May 7, 2010

how can i do perfect coding using all oops concepts?

View 6 Replies

How To Improve Performance Of A Gridview

Feb 16, 2011

I have developed a gridview which has displays 8,000 records. However, the user is compaining that it is too slow. A major function of this gridview is to filter on two of the columns. It seems to me that if the records were stored in memory it would be much faster. This is caching, I think. Is that the case? Since filtering is being done I don't think custom paging will help much. When they submit a filter, with custom paging wouldn't the entire table be read again? So I was thinking of trying caching which is available on SQL Server. Am I on the right track? Can you cache with an Access database? Can you think of any other ways to improve performance of a gridview?

View 1 Replies

How To Use Caching To Improve Performance

Mar 30, 2011

My scenario is : WebApp -> WCF Service -> EDMX -> Oracle DB

When I want to bind grid I fetch records from Oracle DB using EDMX i.e LINQ Query. But, this degrades performance as multiple layers take place between WebApp & Oracle DB. Can I use caching mechanism to improve the performance? But as far as I know cache is shared across the whole application. So, if I update cache other user might receive wrong information. Can we use caching per user? Or is there any other way to improve performance of the application?

View 2 Replies

How To Improve Loading Of View In .net Mvc 2

Jan 3, 2011

I am using Asp.net MVC 2 for my application.In view pages consist of aroung 4 jqgrids,data loading in grid asynchronous using jquery post method when user performace action on the view.In jqgrid i used datatype as local while view is displayed,when ever user perform an action it load json data to grid.In view i have 3 partial page which also loaded based on the user action.It takes more time to display the view.How to improve the performace while opening the view

View 6 Replies

How To Improve CM.AppSettings References

Mar 3, 2010

ASP.NET 3.5 Classes throughout our solution referenced ConfigurationManater.AppSettings[""] to get appSettings (from web.config).

We decided we weren't happy with that. Folks were mistyping appSetting key names in code (which compiled fine), and it was cumbersome to track usages. And then there's the duplicated strings throughout the codebase as you reference the same appSettings all over the place.

So, we decided that only one class would be allowed to reference the ConfigurationManager, and the rest of the solution would reference that class when it needed the value of a certain appSetting. ConfigurationManater.AppSettings[""] was static, so we exposed a bunch of static read-only properties off of our single Settings class.

[Code].....

And now we're injecting the ISettings instance as a dependency of the objects which use settings values (the class/interface are in a project that everyone can reference without problems).

In places where we can't inject an existing instance (e.g. Global.asax), we construct a new instance into a static field.

Given all of that, what would you recommend we change, and why?

View 1 Replies

C# - Improve Design Of GUI / Website

Oct 7, 2010

So i am using visual studio 2008, asp.net 3.5, with the basic toolkit provided. Now i have made the gui which a lot of functionality but the design is very basic. nd looks too old. I need to give it a new look, a new feeling new designs. like the gridview, the buttons the textboxes, the menus look basic. this is not working for me. let me how should i go about doing this?

1) i have herd about tool kits but dont kno which ones are good..(dont want the really expensive ones) but if it is really good my company is ready to spend.

2) will the new VS 2010 or asp.net 4.0 make a difference.

3) The ajax toolkit or silverlight toolkit is any good?

4) i also need to show Charts and graphs now, currently using MS charts.. but now i need which is good.

View 2 Replies

Web Forms :: How To Improve The Speed Of Postback

Mar 4, 2011

i have 100 buttons and 101 textboxs, button run scripts and some of them run by code like this:

[code]....

i meaen i want it run on client side only , before i submit by another button, but the problem is it spent more than 2 second to get value

from textbox1 to textbox2 in this case( because i have 101 button run like these), i know that it need time postback to server. i could not use return()false because if i do like that the value from texbox1 will not add into textbox2, 2 seconds is not reach my golf.

View 6 Replies

Best Tips To Improve The Application Performance?

Jan 20, 2011

regarding the performance improvement in Asp.Net?The best practise tips for asp.net performance improvement?

View 4 Replies

DataSource Controls :: How To Improve SP Performance

May 5, 2010

I have one online school management application developed on asp.net 3.5 using Linq,

Now in my database i have main three talbes which uses in many store procedures,functions,linq join query

CourseMst - Master Table Have CourseID P.K.
StudentMst - Master Table Have StudentID P.K.
Student_Course - Child Table Have StudentCourseID P.K
StudentID F.K. Reference To StudentMSt
CourseID F.K. Reference To CourseMSt

Now i want to increse speed of my application for those page which have query or sp related to above tables,
I want to know about indexing procedure that how to apply indexing and on which field i have to apply indexing

View 5 Replies

How To Improve Page Loading Delays

Mar 21, 2011

I am using gridview control of .net framework 4.0. My list contains 1000 of rows which i am binding to a gridview on each postback. Hence, My page is taking time to load I want to speed up the system. Is there any other control available which can enhance the performance or is there any other way to achieve this? What all i want is faster performance

View 3 Replies

Web Forms :: Improve Performance Of Site?

Aug 7, 2010

I see bugs? give me your opinion really improve my site es [URL] this is metasearch fly meta search flights

View 2 Replies

Web Forms :: Improve Speed And Better Performance?

Jul 14, 2010

I am working on finance domain, we are using many sessions and viewstates for store values and data. Our clients want fast speed of our website. We are using grid/repeater/datalist and chart controls for show data.

View 3 Replies

Web Forms :: Improve The Performance Of Application?

Jun 3, 2010

I am working on AJAX-ASP.NET site. This site is taking 25-30 sec to load the contents. I want to improve this site performance. Is there any settings required in IIS? How to check IIS log files?

View 2 Replies

C# - Improve Efficiency Of GridView Or DetailsView?

Jul 29, 2010

In ASP.net when we perform paging over Gridview or DetailsView than the Gridview fetch all rows from the Database each time.

Suppose our Database contains 100 rows and we have configured Paging in Gridview with page size of 10 records per page.But whenever we click on the the pager control of gridview for any particular page no. then GridView should fetch only particular 10 rows from database.

If we click on page no 3 then it should query only rows 21-30 but it fetches all rows and neglect the remaining .which is simply a wastage of resources.

View 3 Replies

Improve Site Using On Page SEO By Programming?

Jul 20, 2010

I have designed site for my customer site and this Commercial Loan site for the users who are willing to take a commercial loan.I wan to know what should I do from programming site of view so that when user search it must be there in first 5 link.Site name is http://commercialloans4all.com

View 2 Replies

ClassLibrary Project - Improve Performance Of Application?

Feb 17, 2011

I am a .Net Developer and I develop using C#. I am always but all business logic at separat Class Library project , and then use it with my project, But I want to know if it will improve the performance of application , or I can but the Business logic class within the main project without effect at the application performance?

View 2 Replies

Images / Thumbnails - Improve Download Speed?

Jun 15, 2010

I have a website that enable the user to upload pics to server (uploaded pics sizes are 300x400 and approximately 270kb). In my app. I am having another page that lists the pics and I am using there an image control for that purpose. The Image control sizes are 80px width, 60px height. My question is how can I improve the download speed by minimizing the images ? Do I have to create a thumbnail for each picture the user upload?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved