0% found this document useful (0 votes)
36 views5 pages

My Tips

The document contains criteria for various web development tasks and their corresponding solutions and references. It includes how to move between pages, paste date/time, create text areas, check radio buttons and select options, troubleshoot runtime errors, add image galleries, link to sections of pages, group radio buttons, display PDFs modally, and open new pages modally. Solutions provided include using JavaScript history methods, Date object, textarea element, checked property, select element properties, registering script DLLs, adding target attributes, name attributes for grouping, iframes, and window/form target settings.

Uploaded by

docs4jk
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views5 pages

My Tips

The document contains criteria for various web development tasks and their corresponding solutions and references. It includes how to move between pages, paste date/time, create text areas, check radio buttons and select options, troubleshoot runtime errors, add image galleries, link to sections of pages, group radio buttons, display PDFs modally, and open new pages modally. Solutions provided include using JavaScript history methods, Date object, textarea element, checked property, select element properties, registering script DLLs, adding target attributes, name attributes for grouping, iframes, and window/form target settings.

Uploaded by

docs4jk
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
You are on page 1/ 5

SUBJECT CRITERIA

Web page To move to previous or next page in browser


Web page To paste current date and time

Web page To create a text area

Web page To check radio btn or chk box status

Web page To read the value of an option in select

Web page To read the text of an option in select

Visual Basic Getting Run-Time error '-2147319779 (8002801d)':


JavaScript File name
To have a moving image gallery

HTML
Taking user to particular part of a page on clicking
some link

HTML
Grouping radio buttons

HTML
To display PDF content in modal window

HTML
To open new page in a modal window

HTML
SOLUTION REFERENCE
By using history.go(-1) and history.go(+1) in
scripts http://www.trans4mind.com/personal_development/JavaScript/history.htm
var mydate=new Date() http://javascriptkit.com/script/cut166.shtml
<textarea id="textarea" name="textarea"
maxlength="1500"></textarea> http://www.quirksmode.org/dom/maxlength.html

object.checked= true/false http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/re


document.frmNonCaseCorr.cmbCorrNm.value;
or
document.frmNonCaseCorr.cmbCorrGrp.options
[document.frmNonCaseCorr.cmbCorrGrp.option
s.selectedIndex].value;
document.frmNonCaseCorr.cmbCorrGrp.options
[document.frmNonCaseCorr.cmbCorrGrp.option
s.selectedIndex].text;

Run regsvr32 jscript.dll and regsvr32 vbscript.dll http://www.praize.com/help/desk/wonderdesk.cgi?do=faq_list_long&faq_cat


File name's length should be limited.(15 max)

<td class="Content" align="center"><marquee


id="TPOTMarquee"
onmouseover="TPOTMarquee.stop()"
onmouseout="TPOTMarquee.start()"
scrollAmount="5" direction="up" width="100%"
height="350"><p align="center"><br><IMG
src="Images/RnR2.JPG" border="0"><br><IMG
src="Images/RnR3.JPG" border="0"><br><IMG
src="Images/RnR4.JPG" border="0"><br><IMG
src="Images/RnR5.JPG" border="0"><br><IMG
src="Images/RnR6.JPG" border="0"><br><IMG
src="Images/RnR7.JPG" border="0"><br><IMG
src="Images/RnR8.JPG"
border="0"><br></p></marquee></td>

<form name="frmDefault" method="post"


action="Home.aspx" id="frmDefault"> . A link
has to be created like, <td class="menuLgt"><A
href="Home.aspx#DCPartyGallery">RnR
Gallery</A> and the content in page has to be
created by giving a name like, <a
name="DCPartyGallery"></a> <table> </table>
The name attribute is used to group the radio
button. This should be same for all radio which
has to fall under one group.<INPUT
TYPE="radio" NAME="radResentLtr"
VALUE="CM002">.
Have a HTML page with frame set. Create a
HTML that will open in frameset. In OnLoad
method of that page write (calling jsp) the modalfra me.txt v ie w C onte nt.txt modalc hild.txt EPENCommPage.TXT
dynamic content of PDF

In the Head of your page, put <Script>window.name


= "mywindow";</script>. Then, make the window
name the target of your form <form id="frmForm"
target="mywindow">. (OR) add the tag <base
TARGET="_self">to your <head> section.
EPENCommPage.TXT

You might also like