newbie question

  • Thread starter Thread starter Rafael Chemtob
  • Start date Start date
R

Rafael Chemtob

hi,
i'm new to .net. i have a page called productReview.aspx. I didn't develop
this originally.
in the page, the code shows the following:
<FORM id="Form1" method="post" runat="server">
<INPUT id="hdnprodid" type="hidden" name="hdnprodid"
runat="server">

****
after the "Write Your own Review &amp; Share your Thoughts With Others",
there is text that appears on the web page that is nowhere to be found in
the code.
" Want to share your experience with others? Happy with your plasma TV
purchase? You can assist your fellow internet shoppers into buying bliss or
help them beware of a burdensome bargain by rating this product and writing
a review . "

how is this code generated?
where can i get started to understand this code and this framework. it's
very different than ASP.

rafael
 
Hi,

I think that the text appearing in there is the result of using CSS:

<SPAN class="reviewFormLabel">
Write Your Own Review & Share Your Thoughts With Others
</SPAN>

You can see here that a class is applied to the HTML element <SPAN>,
which probably adds those comments you are asking about. I think there
is a property called "content" which adds content to the element. You
should try to get a grasp at how CSS is working in order to understand.

Cheers,
Cosmin.
 
Back
Top