Archive

Archive for the ‘ASP.NET’ Category

Could not load type ‘System.Web.UI.ScriptReferenceBase’

June 24th, 2010 graz No comments

I just want to re-post from Run Things Proper blogger for my future use.

Getting problems when you upload your Ajax Control Toolkit powered website up to your server? Read on for a quick and easy solution!

Scenario

If you have added some of the Ajax Control Toolkit extenders into your website you will have probably tested them out on your local dev computer and marvelled at how easy it was to add some impressive eye candy to your site. Then, just when you think your work is done for the day and its time to put your new creation online you are hit with an error:

Could not load type ‘System.Web.UI.ScriptReferenceBase’ from assembly ‘System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35′.

Well you don’t need to worry too much because this time it is a really simple fix.

Read more…

Categories: ASP.NET Tags:

Failed to Execute request because the App-Domain could not be created

April 22nd, 2010 graz No comments

After re-installing my IIS for several times and spending several hours googling the solution of  “SERVER UNAVAILABLE”, I’ve found only six steps to resolve it. Thank God! I even come to a point to  repair my Operating System after several attempt in configuring my website folder. But that was only my last resort.  Anyway, I didn’t loss hope and found the right solution and here it is.  By the way, I’m just posting this for my future use.

Failed to Execute request because the App-Domain could not be created.

Error: 0×80131902

Event ID: 1088

  1. Open Command Prompt
  2. Run “net stop w3svc” (this will stop the World Wide Web Publishing Service)
  3. cd %windir%\Microsoft.Net\Framework\v2.0.50727\ (command to go to .NET framework directory)
  4. run “aspnet_regiis.exe -ua” (this will uninstall your .NET framework)
  5. run “aspnet_regiis.exe -i” (this is re-install your .NET framework)
  6. run “net start w3svc” (this will restart your World Wide Web Publishing Service)

Having this solution run for my .NET application, staying beyond office hours paid it off… Ok, i have to go now, it’s already 06:53PM … naa mumu! :(

Signed off,

Graz

FTP Server in IIS 5.1 on Windows XP Professional

August 23rd, 2009 graz No comments

Copy and pasted from other website.

Read more…

Categories: ASP.NET, Classic ASP Tags:

Uncrippling Windows XP’s IIS 5.1

August 23rd, 2009 graz No comments

For future reference, just want to post another work-around in setting a maximum users in XP Pro IIS Server.

Read more…

Categories: ASP.NET, Classic ASP Tags:

Dreamweaver: Database connectivity fails with local ASP.NET and ASP servers

August 10th, 2009 graz 3 comments

It’s been years that I’ve been using Dreamweaver as part of my development in my ASP webpages and there is only one glitch that always gave me a headache, the database connectivity. I am quite sure that I’ve made a note of this resolution few years back but since I’ve got a memory-gap, this was misplaced somewhere. Now, I have to find it again at Adobe.com official website and it takes me an hour to locate the exact issue. With this experiences, I decided to post it here in my blog for future shortcomings…

Read more…

Categories: ASP.NET, Classic ASP Tags:

ASP.NET Unifying Components

December 4th, 2008 graz No comments

The unifying components, listed next, are the means by which you can access the services the .NET framework provides:

  • ASP.NET
  • Windows Forms
  • Visual Studeio.NET

ASP.NET
ASP.NET introduces two major features: Web Forms and Web Services.

Web Forms
Developers not familiar with Web development can spend a great deal of time, for example. Figuring out how to validate the e-mail address on a form. You can validate the information on a form by using a client-side script or a server-side script. Deciding which kind of script to use is complicated by the fact that each approach has its benefits and drawbacks, some of which aren’t apparent unless you’ve done substantial design work.

If you validate the form on the client by using client-side Jscript code, you need to take into consideration the browser that your users may use to access the form. Not all browsers expose exactly the same representation of the document to programmatic interfaces. If you validate the form on the server, you need to be aware of the load that users might place on the server. The server has to validate the data and send the result back to the client. Web Forms simplify Web development to the point that it becomes as east as dragging and dropping controls onto a designer (the surface that you use to edit a page) to design interactive Web applications that span from client to server.

Read more…

Categories: ASP.NET, Programming Tags: