AJAX :: 70% Of My Website Site Is Javascript Files - How To Extract This

Feb 7, 2011

I am using AJAX in some pages. this causing my website to grow. 300K is ajax. I would like to lower this to a normal size so the site can be loaded quicly.I have IIS7 and I already have encription for files. What else should I do to handle this problem?

View 4 Replies


Similar Messages:

Configuration :: Configuring Original Settings For New Website Based On Site Files From 1st Website & Password Q

Oct 19, 2010

I want to make a 2nd website and am using a copy of the site files from my 1st site built for me, I added them via FTP to the hosting company. I realise when I edit the new site via the CMS it is editing both sites plus when I try to change anything to the CSS file I get the following error -

C:inetpubvhosts*****mysite******httpdocsapp_themessiteStyleSheet.css

So my questions are what do I need to change to be able to deploy a new site with the files I have to make a new site?I also don't understand where the password is coming from, I can see the User ID comes from the database. in the Asp.net connection strings are the following:

site Data Source=sql7.hostinguk.net;Initial Catalog=***;User ID=***;Password=*** - Where is this password coming from?

membership Data Source=sql7.hostinguk.net;User ID=***;Password=***;persist security info=False;initial catalog=***;

View 2 Replies

To Compress JavaScript Files With GZip To Speed Up The Page Loads Of Site?

Mar 24, 2010

we're looking to compress our gargantuan JavaScript files with GZip to speed up the page loads of our site. I know this can be done through IIS, but I can't seem to find a simple step-by-step guide on how to implement it.We're running IIS7.5 on Windows Server 2008 R2.

View 2 Replies

HttpHandlers / Modules :: Files Won't Download From Website When The Site Has A Custom HTTP Handler Mapped

Nov 28, 2010

When I have a HttpHandler class in C#/ASP.NET mapped to a file extension in IIS any file with that extension fails to download/display in web browsers (it's downloaded as a 0-byte file in some browsers and nothing at all in other browsers). After removing the application mapping for the HttpHandler in IIS so it doesn't call the IHttpHandler class in C#, the web browser downloads the file successfully.

This was tested with an IHttpHandler class in C# that has an empty ProcessRequest method.

View 2 Replies

How To Extract Data Dynamically From A Site

Aug 3, 2010

I am trying to extract data dynamically from a site. The site URL is generated, then i want the code to visit the site and take out the data from the description meta tag... can someone help me? I have repeated what im doing with the original search, but now i want to visit each url generated (which will involve visiting a href='http://{0}'>) and use the regex codes ive made. Im also wondering about the order of the code...?

WebClient objWebClient = new WebClient();
string url = "http://www.google.com/search?q=" + TextBox1.Text + "&num=100";
byte[] aRequestHTML;
aRequestHTML = objWebClient.DownloadData(url);
[code]...

View 2 Replies

C# - Clear Client Cache So When They Visit Website They Use Latest Javascript Files That Modify?

Mar 10, 2010

I have a website that i did some time ago now they request some new features and i did some changes in some javascript files, but when i publish the clients that use the IE have problems with cache so in they browser they have old version of javascript. How can i clear the client cache so when they visit website they use latest javascript files that i modify.

View 1 Replies

AJAX :: Too Many Javascript Files Loading?

Sep 28, 2010

I recently ran yslow on a page i have (master paged etc) and it returned that there were far too many javascript files included (most of which I haven't added).

I guess my question is that given i have v1.0.20229.0 of the toolkit.dll (over .net 2)

I'm wondering if subsequent releases have fixes for this sort of thing?

View 2 Replies

How To Extract Website Hostname From Full Url Using VB.NET

Nov 11, 2010

I get ReffererUrl from current User, if refferer is exists i need to extract hostname without .com/.co.uk .... etc. value from it. So if ReffererUrl is [URL] i want to get just "something".

Doesn't matter whether it is Regex or something else.

View 3 Replies

AJAX :: Modifying JavaScript Files In The AjaxControlToolkit?

Jan 19, 2010

I have downloaded the source code for the latest version of the AjaxControlToolkit and have noticed that there are differences in the scripts included in the solution.

Previously, only one debug version of a JavaScript file was included for each control. This was then stripped of newlines and comments before building in release mode to embed these modified files in the output dll. However, now the solution has both the debug.js and .js versions (debug and compressed versions, respectively) included in the solution for each control.

My question is, if I desired to make changes to the debug versions of the JavaScript file for any control, does the compressed version of the file get generated automatically or is there some manual action I need to take to produce those files? It appears as though with this solution there are no integrated build tasks as in the previous versions so I feel like my latter suspicion may be correct but was hoping for input from somebody who knows more about this.

I do not like the idea of including overriden methods of toolkit funtions in my site's JavaScript, I am just curious how I would go about producing the release version of the script. In other words, how would the developers that work on the AjaxControlToolkit do this when working with the solution.\ | m ny;[6n n

View 1 Replies

AJAX JavaScript Files Served From A Static Location?

Jan 5, 2010

I realise that this is going to be a fairly niche requirement and will almost certainly raise a few "WTF's" but here goes...

Within an ASP.NET Webforms application I need to serve static content from a local client machine in order to reduce up-front bandwidth requirements as much as possible (Security policy has disabled all Browser caching). The idea is to serve CSS, images and JavaScript files from a location on the local file system referenced by filesystem links from within the Web application (Yes, I know, WTF's galore but that's how it is). The application itself will effectively be an Intranet app that's hosted externally from a client but restricted by IP range along with standard username/password security. So it's pretty much a hybrid Internet/Intranet application but we can easily roll out packages of files to client machines. I am not suggesting that we expect nor require public clients to download packages of files. We have control to an extent over the client machines in terms of the local filesystem and so on but we cannot change the caching policy.

We're using UpdatePanel controls to perform partial page updates which obviously means that we need to Microsoft AJAX JavaScript files. Presently these are being served (as standard) by a standard resource handler within IIS/ASP.NET. Ideally I would like to be able to take these JS files and reference them statically from a client machine, and no longer serve them via an AXD.

My questions are:Is this possible?If it is possible, how do we go about doing so?

In order to attempt to pre-empt some WTF's the requirement stems from attempting to service a requirement with as little time and effort as possible whilst a more suitable solution is developed. I'm aware that we can lighten the load, we can switch to jQuery AJAX updates, we can rewrite the front-end in MVC etc. but my question is related to what we can quickly deploy with our existing application architecture.

View 2 Replies

AJAX :: Uploading Files Using Javascript And Ashx On Server Side?

Mar 26, 2010

i want to build a custom control using javascript on client side and ashx on server side.

I know about SWFUpload, how can i configure it with ashx on server side.

any tutorial how i can use FLASH objects to transfer files from client to server. i been looking for such tutorial for a while that uses flash object on client side and sends file info using bytes array to the server. also i want to reduce the size of the file on the client side before sending to safe bandwidth.

basically my client side is pure HTML/CSS/Jquery and Javascript using Ajax and my server side is ASP.NET with C# and most ASHX

View 2 Replies

Website - Webforms Physical Site Structure With Dynamic Site Map

Feb 2, 2010

I am having a little difficulty trying to wrap my head around site structures. I have quite a large asp.net site, for which: Admins can see a user list, Each user can have many accounts, and for each account can have many items. I can picture this as a breadcrumb trail of editing a particular item. User List > Mr Bob > Accounts > BOB77 > Items > Item32 > Edit

User List = All the users Mr Bob = A user the administrator has selected from the User List Accounts = A list of the user's accounts 12BOB = The administrator has selected the account named 12BOB Items = A list of the items an account contains Item32 = The item that the administrator selected Edit = The action that the administrator wants to do. I can picture how this would look like if it was using ASP.NET MVC with the URL, but I am unsure how to map this out using Webforms, and in the physical filesystem.

This is what I have thought up about how I am guessing the physical structure would look like. Will this have to use session variables to achieve what I am trying to do?

/Users/User/Edit.aspx <- for editing a user
/Users/User/View.aspx <- for viewing a user
/Users/User/Accounts/Default.aspx <- for viewing all accounts
/Users/User/Accounts/Account/View.aspx <- for viewing an account
/Users/User/Accounts/Account/Edit.aspx <- for editing an account
/Users/User/Accounts/Account/Items/Default.aspx <- for viewing all items in an account
/Users/User/Accounts/Account/Items/Item/Edit.aspx <- for editing an item

Where can I read more about this kind of setup in a web application? Or, can someone point me in the direction of an available project that has this kind of layout?

View 1 Replies

Web Forms :: How To Extract First Two Values From CommaDelimited String In JavaScript

Apr 1, 2010

I am passing on a public String from C# to JavaScript that looks like this:

"AaSP1,,,,,,,,,"

My task is to extract the 2 first values from this commaDelimited String where the First is "AaSP1" and the second is ""

But the problem as seen in the code is that the variable: two == "AaSP1," wich I dont understand why it can be ? That statement executes in this case.

Shouldn´t two be an empty string ?

[Code]....

View 3 Replies

Web Forms :: How To Send The Data From Site B To Site A From Javascript

Mar 2, 2011

I have two web application. one is A and another is B. I want to send the data from Site B to Site A from javascript so that it should come as a pop up on site A. How can i achieve this thing? Is it possible or not? Need Response as soon as possible.

View 2 Replies

Javascript - Build Huge Website Using Ajax Jquery Sqlserver?

Apr 4, 2011

I am developing a huge almost millions of users and very complex logic , secure and optimize web application.but i am thinking to use client side archeticture with asp.net like gmail is using.

View 2 Replies

Running Asp.net Site - Cannot Have Files At Root

Sep 28, 2010

I am a PHP developer and have been asked to make some slight amendments to an ASP.net site. I can make these amendments but the biggest challenge seems to be getting the actual site up and running on my own server! I have a had lots of errors with regards to the paths to files, as the website is linked absolutely to the root folder and on my development server I cannot have the files at the root. I have therefore worked my way through some of the files making the paths relative so I can at least see some of the site running but then I came across this error:

CS0103: The name 'Data' does not exist in the current context
Line 5: protected void Page_Load(object sender, EventArgs args)
Line 6: {
Line 7: rptNews.DataSource = Data.NewsArticle.GetLatestNews(3);
Line 8: rptNews.DataBind();
Line 9: }

I assume this is something to do with data being called from a database. How to get the site and database up and running as I have no idea where to start and feel I am going round in circles.

View 4 Replies

Web Forms :: Uploading Files From One Site To Another?

Aug 24, 2010

I need to upload files from one site to another and I thought about using the WebClient class and FileUpload method from the System.Net namespace. I read the MSDN documentation and it seems an easy task to achieve but something is going on wrong. For now, I am only testing with the following simple code to upload a file to a test web server in our office which uses HTTP port 8080 instead of 80:

[Code]....

The code above issues the following exception: "The remote server returned an error: (404) No Found." I have made sure that both paths are correct.

Also, does the UploadFile method saves the file physically in the hard disk (I suppose so) or does it load it into the server's memory?

View 1 Replies

Accessing Files On A Hosted Site?

Oct 25, 2010

I want to create an asp.net based website. When I create the sit eon my local machine I am uploading pdf files to my file system then accessing the files to view in my website. When I make the site go live how do I translatye this? Can I have files saved somehow with my interenet host? How would I access the files though the internet host on my application?

View 2 Replies

Web Forms :: Uploading Pdf Files To The Site?

Feb 25, 2010

I have a webiste that is on a shared host environment. I would like to be able to upload pdf files to the site and then somehow link them to a client record in the database.

View 6 Replies

Web Forms :: How To Add Mp3 Files To Site And Charge Per Download

May 5, 2010

I am running asp storefront version 9. I am creating a website that offers audio therapy to people. I want to make it so they have an option to preview a clip of the audio (maybe 30 secs). Then also have an option to pay for the audio file then download it from the site.

I am not sure of the best way to go about this. Right now I have each product set up as a generic product calling xml package .product.simpleproduct.xml.config.(I just set it up)

Is there a way to have the two options (preview or buy) for each product right on the product page?

View 1 Replies

Web Forms :: Upload Web Site (Large Files)

Jan 6, 2011

I need to create an upload site to upload large files over 2GB I want ot create a site like [URL]. Once these files get upload i want them to have a link to the file created but the link encrypted. I know there is a limit to http upload. I have used a bunch of the flash upload web apps but are capped at a specfic mb becuase of .net. What options are out there.

View 2 Replies

After Publishing Web Site Didnt Get Precompiled Files?

Feb 26, 2011

i have developed a web site first time when i build and publish web site i got precompiled pages..
but when i have made few changes on that n again try to publish it not giving pre compiled pages at destination folder.

View 1 Replies

WebMatrix :: Delete Unnecessary Files From Site?

Nov 8, 2010

I have published my site using WebMatrix. In my local folder on my PC I've deleted some unnecessary files. And then published the updated site again. WebMaxtrix never give any indication it is going to delete files that are not found in an UPDATED published site. When browsing to my site and requesing the-supposed-to-be-deleted resources I still get them in my browser.

View 2 Replies

C# - Redeploying Site In IIS7 Without Files In Use Interfering?

Mar 12, 2010

We've got a process currently which causes ASP.NET websites to be redeployed. The code is itself an ASP.NET application. The current method, which has worked for quite a while, is simply to loop over all the files in one folder and copy them over the top of the files in the webroot.

The problem that's arisen is that occasionally files end up being in use and hence can't be copied over. This has in the past been intermittent to the point it didn't matter but on some of our higher traffic sites it happens the majority of the time now. I'm wondering if anyone has a workaround or alternative approach to this that I haven't thought of. Currently my ideas are:

Simply retry each file until it works. That's going to cause errors for a short time though which isn't really that good. Deploy to a new folder and update IIS's webroot to the new folder. I'm not sure how to do this short of running the application as an administrator and running batch files, which is very untidy.

Does anyone know what the best way to do this is, or if it's possible to do #2 without running the publishing application as a user who has admin access (Willing to grant it special privileges, but I'd prefer to stop short of administrator)? Edit Clarification of infrastructure... We have 2 IIS 7 webservers in an NLB running their webroots off a shared NAS (To be more clear, they're using the exact same webroot on the NAS). We do a lot of deploys, to the point where any approach we can't automate really won't be viable.

View 6 Replies

Mvc Site Is Not Caching Content Or Script Files?

Mar 18, 2010

My asp mvc site is not caching content or script files. How do I get it to cache such?

View 1 Replies







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