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


Similar Messages:

Improve On This Older Code?

Jul 27, 2010

[Code]....

View 5 Replies

AJAX :: Add Source Code To Accordion Pane?

Feb 21, 2010

Im trying to add some code to my accordion pane but the code gets executed. The code is not shown as text. How can i fix this?

View 4 Replies

AJAX :: Compile The Source Code Of Latest Toolkit

Jul 8, 2010

Recently, I downloaded the source code (not Binaries) of latest AJAX toolkit and introduced some changes in Calendar extender. Now, I would like to build the DLL out of it so that I can add it to my project and use it. Now, when I am trying to build DLL, it fails. It never compiles for me. Infact, I am not sure which project/application file exactly do I need to run.

Every-time, I try to open any Solution/Project, I get exceptions either for some missing files or folders. I have both VS 2005 Pro and VS 2008 Express Edition installed. I need the libraries to be compatible with Framework 3.5.

View 2 Replies

AJAX :: Use Control Toolkit Source Code In Class Library?

Jan 6, 2010

I am making a class library. I want to use some of ajax control but don't know how to use ajax source code. suppose i want to use file upload control in my class library. How should i accomplish this task. I mean to say how should i refer ajax file upload sript file(.js) in my class library.

View 6 Replies

Visual Studio :: Source Code To Display On One Line Instead Of Multiple In Source View?

Nov 1, 2010

how to make my source code to display on one line instead of multiple in source view. The display drives me batty when I'm trying to find something and I would prefer to display across the page instead of multiple lines down the page.

View 2 Replies

Open Source Lead Management System With Source Code?

Sep 6, 2010

asp.net open source Lead management system with source code.

View 9 Replies

AJAX :: Embedded Object Doesnt Display Within Modalpopup, But Code Is Visible In Source View?

Mar 9, 2011

Using StringBuilder im building my object in code behind so its customize for our needs.. I placed a Literal control within the modalpopup and populating it when you click on a button..On my test page everything works great to display it and when fed a value video file, it plays.. on that page, it wasnt contained within a modalpopup.Now on my actual dev page that i need it on, i placed the literal control within the modalpopup, and when you click on the button, it builds the object..my modal popup comes up and everything shows up except the object which is weird, because within the stringbuilder i have 4 buttons below the object and those show up, just not the object control itself.. can a object not be built and displayed like this?What makes it weirder is that when the modal popup opens, you can view the source of the page and my entire customize object control is there, but it just doesnt render on the page..

View 4 Replies

AJAX :: Source Of Gridview Is Not Shown In Browser's Page Source?

Apr 7, 2010

source of gridview details in page source.i am disabling and enabling in a server side and also i am using updatepanel too in the page.

View 4 Replies

Web Forms :: Call A Code Behind Function Form Html Source Code?

Mar 3, 2010

I want to call a function present in code behind from front page (html : source code)

i want to use like this:

Source code

<a href='<%# linkAlpha("B").ToString()) %>' title="B" id="B_List" runat = "server">B</a>

Code Behind

protected string linkAlpha(string value)
{
// /market-research/<%#Eval("customname")%>/
string str = "";
if (Request.Url.DnsSafeHost == "localhost")
{ // /market-reports/<%# Eval("customname")%>/
str = "Alpha_Category.aspx?q=" + value.ToString().Trim();
// Response.Redirect("Alpha_Category.aspx?q=" + value.ToString().Trim());
}
else
{
// str = "/market-reports/" + value.ToString().Trim() + "/";
str = "/Alpha_Category.aspx?q=" + value.ToString().Trim();
}
return str;
}

View 2 Replies

Accessing An .apsx Page Source Code From Code Behind

Nov 11, 2010

Here is what im trying to do I want to, from my c# code-behind, get the code between 2 <asp:Content> tags that are located in one of my .apsx pages.

View 8 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

C# - Web Service Design - Error Code (store In Source Code Or Store In Database?

Jan 19, 2011

Web service error response (code/message etc) would you store it in a database? or would you keep the error response in a method.By the time I'm done with this, there will be hundreds of error response, maybe in the future, thousands? (I dont know yet, depends how large this web service grows).EDIT: error response is the response returned back to the application via the web service, (not to be confused with error logging).

View 1 Replies

Looking For ERP In .net With Source Code.

Jan 11, 2011

any ERP in asp.net with source code.i need to customize it .

View 1 Replies

Looking For Source Code For The ScriptManager?

Feb 27, 2010

I know I can load the symbols for the class but i can't get it to work. I tried everything so i give up.

I only need the code for this class. It's because i am using a custom script manager and i must know how the .net one works.

View 1 Replies

MVC :: Add Source Code To Solution

Jan 12, 2010

Out of all the projects that contribute to MVC, I've added only the System.Web.Mvc project to my solution and I'm having trouble with the compilation of the aspx files. Firstly the page compiler complained that ViewResult<T> (which my View inherits from) was specified in two assemblies - the copy in the source code and the one in the GAC. I fixed this by changing my copy of the source code to a higher version and referencing the different verison within the 'compilation' tag in web.config. (In fact you can just delete the assembley reference altogether and it automatically uses the one in the solution.) Then it complained that Html helper methods couldn't find classes such as 'Controller'. Now I think this is because the official MVC assemblies in the GAC are looking for the correct version of 'System.Web.Mvc' (i.e. the one with the right public key) but my app is no longer referencing it.

I thought I'd fixed this with an assembley redirect to my version of the code but now the View templates are complaining about inheriting from classes that are in an assembley with the wrong public key.So is what I'm doing possible or do I need to be recompiling all of the MVC source code?

View 2 Replies

How To Install Web Application Without The Source Code

Aug 19, 2010

i have a website i wont to sell how i can protected it and install it without the source code is that possible

View 1 Replies

Configuration :: How To Cenvert .dll To Source Code

Feb 22, 2011

We have some problem in develepment server so we didnt recover the our project source code (asp.net 1.x with C#). now i have downloaded the files from the production server but the production server doesnt have the C# source code. its contain only the .dll file (singe dll file for all the aspx.cs and .cs classes) and design files. we need to update some functionalities in my project,so can i get .aspx.cs and .cs clasess from the project .dll? or how can i modify the clacess without source(.cs,.aspx.cs)?

View 1 Replies

Configuration :: How To Secure The Source Code

Sep 22, 2010

If I deploy my ASP.NET project to a shared server web hosting, then is there a way to secure my source files so that the provider will not be able to access the source?. For example, the provider of my web hosting may download my files and then he will be able to get access to all my source.

View 9 Replies

MVC :: Shopping Cart Source Code?

Feb 28, 2011

I'm looking for a free shopping cart source code to start creating customized chart.MSC Musicstore sample code is too simple. NOPCommerce requires adding link into it in every page.Where so find such source code ?

View 4 Replies

Configuration :: Compiling Source Code?

Jan 31, 2011

How is this achieved so that my source code is protected as put on a server other people have access to?

View 6 Replies

To Get List Of .net Projects With Source Code?

Feb 25, 2010

I want a list of Asp.net projects as well as .NET projects with source code. for Acadamic Level......

View 7 Replies

Source Code Quality Management?

Mar 1, 2010

In the Java world for instance, there are some very sophisticated tools to manage the quality of the source code, and that cover more than one dimension, such as :

Coding Rules
Comments
Complexity
Unit testing
Code coverage
etc.

These tools are very useful to manage the technical debt. They connect to a repository of source code and scan it. They can be triggered automatically just by the fact of committing the source code.We have a large number of ASP.NET applications to maintain and evolve, and have continuous flow of demands for new ones to be created. We know that we have a technical debt, but we are facing some challenges of identifying it and having it under control.

there are some tools to manage the source code quality in ASP.NET applications like those mentioned above.

View 4 Replies

Membership/SQLMembershipProvider Source Code

Jul 3, 2010

In the SQLMembershipProvider source for ASP.NET membership, there is a custom exception, MembershipPasswordException.

The definition of it is not part of the source, but when I do a goto definition on it, it opens the definition, which indicates: [from metatdata] and the file it came from is a dll, system.web.dll from a temporary directory.How did that get there or was it part of the msi install that the toolkit provider came with?

View 2 Replies







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