473,779 Members | 1,964 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem with Web Matrix I Think

I have started to work through Teach Yourself ASP.Net in 24 hours. The
problem that I have noticed is - When I place a textbox Web Control on
the screen and then try to change the "ID" in the property window it
does not retain the change to the ID. Example (ID) = AutoText1 I
change it to loanAmount and press enter it goes right back to
AutoText1. The only way I can change it is by right clicking on the
textbox control and selecting "edit tag" and changing the name their.
Then my change is retained and I can see the change in the properties
window. I know this is a free tool and all but I would think this
should work. It is highly possible I don't have some setting correct
but I am a newbie and have know idea what to change.

I am using the latest version of Web Matrix.

Len Sumnler

Nov 19 '05 #1
3 1303
Just like to add my support and say I'm having this problem too, all google
seems to do is throw up people with the same problem and no resolution.

Somebody please help us!

"ls******@gmail .com" wrote:
I have started to work through Teach Yourself ASP.Net in 24 hours. The
problem that I have noticed is - When I place a textbox Web Control on
the screen and then try to change the "ID" in the property window it
does not retain the change to the ID. Example (ID) = AutoText1 I
change it to loanAmount and press enter it goes right back to
AutoText1. The only way I can change it is by right clicking on the
textbox control and selecting "edit tag" and changing the name their.
Then my change is retained and I can see the change in the properties
window. I know this is a free tool and all but I would think this
should work. It is highly possible I don't have some setting correct
but I am a newbie and have know idea what to change.

I am using the latest version of Web Matrix.

Len Sumnler

Nov 19 '05 #2
Please send the details about
1.WebMatrix Version (0.5 or 0.6)
2.Operating System.
3..NET framework version

i am using WebMatrix But never face such problem.
and Dont press enter.Better change the cursor position
(click the mouse anywhere).

"Colin_Morr is" <Co*********@di scussions.micro soft.com> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
Just like to add my support and say I'm having this problem too, all google seems to do is throw up people with the same problem and no resolution.

Somebody please help us!

"ls******@gmail .com" wrote:
I have started to work through Teach Yourself ASP.Net in 24 hours. The
problem that I have noticed is - When I place a textbox Web Control on
the screen and then try to change the "ID" in the property window it
does not retain the change to the ID. Example (ID) = AutoText1 I
change it to loanAmount and press enter it goes right back to
AutoText1. The only way I can change it is by right clicking on the
textbox control and selecting "edit tag" and changing the name their.
Then my change is retained and I can see the change in the properties
window. I know this is a free tool and all but I would think this
should work. It is highly possible I don't have some setting correct
but I am a newbie and have know idea what to change.

I am using the latest version of Web Matrix.

Len Sumnler

Nov 19 '05 #3
I'm using WebMatrix 0.6
on XP Pro SP2
with .NET ver: 2.0.50215.44

Cheers.

"Arnab Banerjee" wrote:
Please send the details about
1.WebMatrix Version (0.5 or 0.6)
2.Operating System.
3..NET framework version

i am using WebMatrix But never face such problem.
and Dont press enter.Better change the cursor position
(click the mouse anywhere).

"Colin_Morr is" <Co*********@di scussions.micro soft.com> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
Just like to add my support and say I'm having this problem too, all

google
seems to do is throw up people with the same problem and no resolution.

Somebody please help us!

"ls******@gmail .com" wrote:
I have started to work through Teach Yourself ASP.Net in 24 hours. The
problem that I have noticed is - When I place a textbox Web Control on
the screen and then try to change the "ID" in the property window it
does not retain the change to the ID. Example (ID) = AutoText1 I
change it to loanAmount and press enter it goes right back to
AutoText1. The only way I can change it is by right clicking on the
textbox control and selecting "edit tag" and changing the name their.
Then my change is retained and I can see the change in the properties
window. I know this is a free tool and all but I would think this
should work. It is highly possible I don't have some setting correct
but I am a newbie and have know idea what to change.

I am using the latest version of Web Matrix.

Len Sumnler


Nov 19 '05 #4

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

Similar topics

2
3327
by: Tino | last post by:
In the snippet below, if the problem line is present, my program crashes during the Matrix operator*(const Matrix&) call. Would someone point out to me why I'm having this problem? Regards, Ryan #include <iostream> #include <cmath> #include <vector>
4
2404
by: Leslaw Bieniasz | last post by:
Cracow, 20.09.2004 Hello, I need to implement a library containing a hierarchy of classes together with some binary operations on objects. To fix attention, let me assume that it is a hierarchy of algebraic matrices with the addition operation. Thus, I want to have a virtual base class class Matr;
13
16736
by: Charulatha Kalluri | last post by:
Hi, I'm implementing a Matrix class, as part of a project. This is the interface I've designed: class Matrix( )
4
4802
by: Yudan Yi | last post by:
I have a problem to copy (assign) a matrix to another matrix. Curreny, I know copy the number using loops, while it will take some time, I wonder if there have faster method. The following code explain my situation detailed. double ** matrixa, **matrixb; int nrow = 10, mcol = 10; matrixa = initmatrix(nrow, mcol); // allocate memory a matrixb = initmatrix(nrow, mcol); // allocate memory b // copy a => b for (int i=0;i<nrow;i++)
3
1784
by: Tony Johansson | last post by:
Hello Experts!! I have two small classes called Intvektor and Matris shown below and a main. Class Intvektor will create a one dimension array of integer by allocate memory dynamically as you can see in the constructor. Class Matris should create a matris by using class Intvektor. So what I want to have is a pointer to an array of Intvektor and in each positionindex in this array will I have a pointer to an array of Intvektor in this...
8
3528
by: SpOiLeR | last post by:
Hello! I have a matrix class like this: class MyObject; // MyMatrix is contains MyObjects class MyMatrix { public: ...
1
295
by: Marc Webel | last post by:
Hi i have a small(?) problem and i hope you can help me. i have a basis class "Matrix" that contains a 2d matrix. you can fill the matrix by a method called "setData(int x,int y)". two child classes "MatrixTypeA" and "MatrixTypeB´" inherit the matrix and the filling method. ok. both childs have different attributes and variables but happen to use the same matrix type to store the data. now theres a class "MatrixGenerator" that fills...
20
5246
by: Frank-O | last post by:
Hi , Recently I have been commited to the task of "translating" some complex statistical algorithms from Matlab to C++. The goal is to be three times as fast as matlab ( the latest) . I've used various techniques ( loop unrolling, loop jamming...) and tried some matrix libraries : newmat (slow for large matrix) , STL (fast but ..not usefull) , hand coding (brain consuming...), and recently Meschach...
13
2471
by: Jeroen | last post by:
Hi all, I'm trying to implement a certain class but I have problems regarding the copy ctor. I'll try to explain this as good as possible and show what I tried thusfar. Because it's not about a certain code syntax but more a 'code architecture' thing , I'll use simple example classes (which are certainly not complete or working...) just to illustrate the idea (and I may make some mistakes because I'm not that experienced...). The...
1
1185
by: Peterwkc | last post by:
Hello all C++ expert programmer, i fairly new to C++ programming. I have designed a matrix class which uses vector to store the data. My problem is i want store the data into vector until user is enough input. what i have did so far. Below is my program:
0
9633
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
9474
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
10137
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
10074
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
8959
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
5503
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3632
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2867
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.