On CBSSports.com: Mike Tyson's daughter dies in accident
9 Resources for

response.write

  • Subscribe to this listing via:
  • RSS
  • Email

TechRepublic Resources

example of Server.Transfer and Context Handler
This is an example of Server.Transfer and Context Handler.Through this we can get the multiple values of previous form.http://www.hanusoftware.comIn this page we are displaying data from previous form. We can use this technique for multiple form registration form.Code (ContextParent.aspx.cs): -private void Button1_Click(object sender,System.EventArgs e) { Server.Transfer("ContextChild.aspx"); } internal Hashtable Value { get { Hashtable objHT = new Hashtable; objHT["Name"]=TextBox1.Text; objHT["FathersName"]=...
Tags: hanuseo@..., Hashtable objHT, Server.Transfer, Response.Write
Discussion threads 2007-09-07
Can't open files in IE7
Hi,I have a asp program which works fine in IE6 and now it does not work in IE7.The problem is that IE7 does not like going to a folder and I just get an error stating that this web page cannot be display.Here is part of the code that makes...
Tags: cthang@..., Response.Write, Microsoft Internet Explorer 7, objRecordSet.Fields
Discussion threads 2007-04-05
Enable my VB arrogance
I've been building VB applications since 1995 but always desktop only or client/server.I've tweaked a few ASP pages along the way but have never built one from the ground up. I now have an opportunity to do that but can't use ASP.Net yet as it has not been adopted here.I'm...
Tags: ASP Page, END, Microsoft ASP, Microsoft Visual Basic, programming, Response.Write, sjohnson175@..., strSubject
Q&A 2005-12-22
ASP/Access Update Table by DropDown Menu
I'm a bit of a newbie when it comes to using a database with a webpage. It is important that I use MSAccess for this.I'm trying to create a business directory that will show results depending on what is chosen in the category list.Inside this database I have a...
Tags: Category, jlindemann@..., Microsoft Access, Microsoft ASP, programming, response.Write
Q&A 2005-05-06
Invalid procedure call or argument: left
I am using an ASP page running on IIS6 using VBScript as the programming language. I am trying to display the first part of body text from a freetext field as part of a news headline section on the home page. The code I have is: if not isnull(objRSNews("tblNewsTitle")) or objRSNews("tblNewsTitle")""...
Tags: munrrob, nBody, objRSNews, programming, response.Write, tblNewsBody, tblNewsTitle
Q&A 2005-02-02
Convert an ASP application to Perl
This article originally appeared as a Web Development Zone e-newsletter.By Phillip PerkinsSome Web Development Zone e-newslettersubscribers have requested examples of applications created in alanguage other than ASP. I do the majority of my Web development inASP; however, you can use other scripting languages to create Websolutions. In this tip, I'll...
Tags: Scripting languages, ASP application, Microsoft ASP, Response.Write, Perl, strConn, Set rs.ActiveConnection
Technical articles 2003-09-29
Put these ASP sample scripts to use
By Amy Cowen(6/29/99)Now that you're ready to dig in, here are some sample scripts you can put to use. You can even use includes to create a master file of these scripts and then add them to several pages.Remember: When you embed HTML code inside an ASP script, you need...
Tags: Scripting languages, Response.Write, Microsoft ASP, strCompany, HTML
Technical articles 2003-10-03
Use these ASP scripting techniques
By Amy Cowen(6/29/99)In VBScript, you don't have to declare variables or explicitly define their type the way you do in other scripting languages. A variable exists the first time you use it. This feature leaves your code wide-open to typos, however. If you mistype a variable name somewhere in the...
Tags: Scripting languages, technique, Microsoft ASP, Dim strName, Using Len, Amy Cowen, Option Explicit, Response.Write
Technical articles 2003-10-02
Get started coding C# in ASP.NET
To truly tap into the power of ASP.NET, you must dig below the surface and realize that everything--everything--is an object. This simple walkthrough illustrates basics of Namespace, class, and some of the platform's other powerful features.Many Web developers embraced Microsoft's Active Server Page ASP technology and have used it widely...
Tags: .NET, Middleware, Programming languages, Microsoft ASP.NET, C#, Hello World, Response.Write
Technical articles 2001-09-29

Additional Resources

Communicating with Request and Response objects
One of the basic tasks of Active Server Pages is moving information between a Web page and the server. Learn how you can make this happen with the Request and Response objects.In our previous article, we used ASP to create a basic HTML page containing dynamic content. That simple page...
Tags: Kevin Brown, Response Object, QueryString, server
Technical articles 2001-04-09
How to write magic numbers in C#.......................urgent
want to get a matrix of 3*3 and in which the invividual row sum,column sum and diagonal sum should be equal.and the out put shuold be all those matices whose total sum shold be upto hundred(individual row,column or diagonal)And yes all the numbers in the matrix has to be unique.Example...
Tags: .NET, Programming languages, magic number, C#, enum, Response.Write
Discussion threads 2008-08-24
How do I... Use NDS to authenticate users of a Web-based application?
This blog entry is also available as a TechRepublic download.In many Web Based applications, functionality is controlled and / or personalized by knowing who the logged in user is. This varies from simply displaying a greeting to the creation of custom menus depending on the user's login.Additionally many organizations make...
Tags: Application Development, Networking, Programming, Security
Blog posts 2007-06-26
SQL in ASP page, database search
Hi to all,I have an ASP page that has 10 fields (drop-down menus) it is a sort of a form. Depending on what you choose, the information will extracted from the DB. Note that you have the option either choosing all the ten fields or even one, or two ,...
Tags: Databases, SQL, Microsoft ASP, database, response.Write, Please Select, ADODB.Recordset, Server.CreateObject
Discussion threads 2008-09-04
Track your users with session objects
How do you track users accessing your Web site, since each request is an independent event, and IP addresses are not necessarily unique? With session objects it's possible. Find out how in this installment of the Active Server Page.Session state is something often taken for granted with client/server applications. For...
Tags: Scripting languages, Servers, Kevin Brown, session object
Technical articles 2001-04-23
Working with configuration files in ASP.NET 2.0
 The second iteration of ASP.NET includes a number of enhancements for working with configuration files. Configuration files include a variety of ASP.NET settings, as well as facilitate the use of custom data elements. While it isn't a difficult process to retrieve data values using ASP.NET 1.1, the improvements in 2.0...
Tags: Programming, ASP.NET, .NET Newsletter
Blog posts 2007-06-19
Use SQL Server to maintain session state
While maintaining data between server calls can be difficult, you can use SQL Server to handle session state management user session data. Here's how. Maintaining data between server calls is a common dilemma in Web development. You may need to maintain information for the...
Tags: Microsoft SQL Server, Servers, Databases, Tony Patton, Enterprise software, .NET, server, Microsoft ASP.NET, .NET Newsletter, TechRepublic Inc., HTML, Database, Data, Management, Session, ToString, C#, Programming Languages, Software Development, Software/Web Development, Hardware, Software, Data Management
Technical articles 2005-06-30
Work with databases in ASP
By Amy Cowen(6/29/99)One of ASP's greatest assets is that it allows you to tap into a database with ease. It's common to work with either an Access or a SQL database. Since Access is the easiest to start with, and is a tool you may already have, we'll use it...
Tags: Storage, Databases, recordset, database, Data Source Name, data source, DSN-less connection, DSN-less, Microsoft Access, Microsoft ASP
Technical articles 2003-10-03
Mastering the basics of Active Server Pages
When it comes to data-driven Web pages, Active Server Pages ASP offer the most popular approach. Developer Republic kicks off its new ASP column with a look at ASP fundamentals.Microsoft’s Active Server Pages ASP technology is one of the most popular Internet development platforms for creating dynamic, data-driven Web sites....
Tags: Scripting languages, Kevin Brown, Microsoft ASP
Technical articles 2001-03-26
Extend ASP.NET with HTTP modules
While HTTP modules have been a part of ASP.NET since its inception, I still encounter developers with no idea of their existence or usage. HTTP modules allow you to process incoming requests and outgoing responses to and from an ASP.NET application. This article offers a closer look at using HTTP...
Tags: Application, HTTP, Event, Module, Microsoft ASP.NET, Request, HttpApplication, TestHttpModule, Tony Patton
Blog posts 2007-10-16
Test your security incident response plan
When was the last time you tested your organization's security incident response plan? All the response plans in the world -- however effective they may be -- won't do your organization any good if the plan doesn't work. Mike Mullins tells you how to put your response plan to the...
Tags: Cyberthreats, Viruses and worms, Michael Mullins CCNA, MCP, virus, security incident response, security response plan, security, network, Security Solutions Newsletter, Plan, Response Plan, Mike Mullins, Michael \"Mullins CCNA, MCP\"
Technical articles 2007-04-05
  • << Previous
  • page 1 of 1
  • Next >>


Deploy Windows Vista successfully in your organization
Learn how to deal with Vista's new activation process, make sure that applications will work in Vista, and how to use Microsoft tools to ease the pain of migrating. With the information you'll find here, you'll discover how to successfully deploy Windows Vista in your organization.
Buy Now
Disaster Planning and Recovery Pack
TechRepublic's unique Disaster Planning and Recovery Pack contains the hands-on resources you need to ensure that your IT organization is ready for its next crisis.
Buy Now

SmartPlanet