473,698 Members | 2,086 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can I modify the Request object in ASP.NET?

Hi,

I tried to modify the request object when my aspx page is loaded(or
before). When I try to do it a received a "Read only" error message.
Is it possible to modify a Request when the server received it? What
I want to do is something like that:

Me.Request.form .Item("Name")=" NewName"

If I can do it this way, How can I do it otherwise?

Thanks

Marc Gingras
Nov 18 '05 #1
3 1349
If you got a phone call from a friend, could you modify what they say to
you? It's the same thing with the Request object. It is created by parsing
the Request sent from the browser. You can't change what the browser
Requests. You can only change your Response to it.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Marc Gingras" <Ma**********@s tatcan.ca> wrote in message
news:3f******** *************** ***@posting.goo gle.com...
Hi,

I tried to modify the request object when my aspx page is loaded(or
before). When I try to do it a received a "Read only" error message.
Is it possible to modify a Request when the server received it? What
I want to do is something like that:

Me.Request.form .Item("Name")=" NewName"

If I can do it this way, How can I do it otherwise?

Thanks

Marc Gingras

Nov 18 '05 #2
Not possible.

If somewhere in your code you use Request.form("N ame"), instead of trying to
change this value you could change your code to use directly "NewName"
instead...

Patrice

"Marc Gingras" <Ma**********@s tatcan.ca> a écrit dans le message de
news:3f******** *************** ***@posting.goo gle.com...
Hi,

I tried to modify the request object when my aspx page is loaded(or
before). When I try to do it a received a "Read only" error message.
Is it possible to modify a Request when the server received it? What
I want to do is something like that:

Me.Request.form .Item("Name")=" NewName"

If I can do it this way, How can I do it otherwise?

Thanks

Marc Gingras

Nov 18 '05 #3
Request is Read Only (as the error message indicates).

If you need to do this - store the Request value in a variable and use that
variable where you'd use the Request call. Update the variable when / where
needed.
"Marc Gingras" <Ma**********@s tatcan.ca> wrote in message
news:3f******** *************** ***@posting.goo gle.com...
Hi,

I tried to modify the request object when my aspx page is loaded(or
before). When I try to do it a received a "Read only" error message.
Is it possible to modify a Request when the server received it? What
I want to do is something like that:

Me.Request.form .Item("Name")=" NewName"

If I can do it this way, How can I do it otherwise?

Thanks

Marc Gingras

Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
2887
by: Philippe C. Martin | last post by:
Hi, I am trying to change the data in a form field from python. The following code does not crash but has no effect as if "form" is just a copy of the original html form. Must I recreate the form order to do that ? My point is for the client to be able to re-read the modified data.
0
1266
by: Kevin | last post by:
I am successfully creating and deleting appointments and sending invitations in a C# / ASP.NET / Exchange2000 environment. It works great! But the problem is that no notifications are sent out when I programmatically delete or modify appointments. This is a key feature that we will need and I am looking for information/documentation on how to send these notifications programatically. The code below is what I'm using to delete a...
1
2917
by: Henry | last post by:
Hi. I've been trying to modify my dataset and have been unsucessful. Any help would be great. What I have is a dataset in a session variable. Here is what I have done to stored into the dataset via store procedure. Sample Stored Procedure: CREATE PROCEDURE prcGetData AS
6
6091
by: Dave Slinn | last post by:
I have a VB app hosting the Webbrowser control. I would like to add "something" to the requests that app is submitted to our web application to indicate that its from this webbrowser and not a separate instance of IE. Is this possible, keeping in mind that I cannot add anything to the registry, since a user may still use IE to visit the web app.
0
8674
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8604
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9157
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9028
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8895
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7728
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2330
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.