|
Do your extended textboxes have a valid .Text property or is there some other way you need to access the value in the box?
CleaKO
"I think you'll be okay here, they have a thin candy shell. 'Surprised you didn't know that.'" - Tommy (Tommy Boy) "Fill it up again! Fill it up again! Once it hits your lips, it's so good!" - Frank the Tank (Old School)
|
|
|
|
|
i need to change the page layout of the web page in asp.net 2005 how to do?
|
|
|
|
|
Change how?
You could use positioned divs, css or a variety of methods depending on what you're trying to acieve
"Now I guess I'll sit back and watch people misinterpret what I just said......"
Christian Graus At The Soapbox
|
|
|
|
|
Dear friends
I have one web based application. I have four buttons like Add,Delete, Edit etc. I need short cut keys to be attached for the execution of all buttons. like for Add I can use Alt+A
Also I have one combo box control whose items are very big string but since my width of combo box is very small I am not able to read the complete items value. How can I use the tool tip to show the user complete item string of a selected item from combo box.
Your quick response will be highly appreciated.
Regards and Thanks
Murtuza Patel
|
|
|
|
|
|
How to use shortcut keys in web development like we r using in desktop applications for differeent types of action such as Help -F1.
trrtuu
|
|
|
|
|
You can assign access keys to hyperlinks. For example:
<a href="myhelpfile.htm" accesskey="H">Help</a>
|
|
|
|
|
F1 can be handled from document.onHelp
|
|
|
|
|
Hi Everybody
I want solution for my problem.
I have two Frames in a html page. In first Frame i place a javascript menu(File-New,Open .. like this ) Menus and submenus. In the Second Frame is the Empty Page. I click the Menu then the submenus are hidden that is it goes inside the first frame . The submenus are not visible . Any Option is there for it
RK
|
|
|
|
|
Check for parameters wich u r passing in javascript...
Regards,
Smart Boy
Mumbai,
(INDIA)
|
|
|
|
|
Hi all,
I'm developing a web application where the application opens in a full screen mode. The users need a Show Desktop icon on it, clicking which the user's desktop comes up, just like the Windows Show Desktop icon.
Is this possible? If yes then please help me, its really important for my client!!,
thanks in advance,
Robin
|
|
|
|
|
I don't think this is possible without something like java or activex
Brad
Australian
- bryce on "Problems with Code Project"
*sigh* Maunder's been coding again...
|
|
|
|
|
|
Hello all,
I am new to this domain and I need your help badly.
I have created a personal page in FrontPage.
I want to upload this page on Net so that all can see it. How do I do this ?
I heard from some of my friends that some sites like 'geocities' or something allow free uploading.
Is it true ?
Can anyone please tell me how I upload and if there is some site which gives free space for creating web pages.
|
|
|
|
|
You should purchase a domain name and a web server space then upload it there. If you need help with choosing on please email me.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
ArchaBhandare wrote: I heard from some of my friends that some sites like 'geocities' or something allow free uploading.
Yes
|
|
|
|
|
Hi all,
I have create a dynamic table in javascript by following
function moreWorkClicked()
{
var tbl = document.createElement("table");
var tblBody = document.createElement("tbody");
var body1 = document.getElementsByTagName("body")[0];
var mainTable = document.getElementById("moreWorkTd");
var counter = parseInt(document.forms[0].clickCounter.value);
counter = counter + 1;
tblId = "tblEmployer" + counter;
tbl.setAttribute("id", tblId);
tbl.setAttribute("width", "100%");
tbl.setAttribute("border", "1");
tbl.setAttribute("align", "left");
labelArray = new Array("Employer Name", "Job Title", "Start Date", "End Date", "Salary Per Month(Approx.)");
nameArray = new Array("employerName_txt", "jobTitle_txt", "startDate_txt", "endDate_txt", "salary_txt");
for (var j = 0; j < 5; j++)
{
textboxName = nameArray[j] + counter;
var row = document.createElement("tr");
var cell = document.createElement("td");
cell.setAttribute("class", "formDataAlign");
var cellText = document.createTextNode(labelArray[j]);
cell.appendChild(cellText);
row.appendChild(cell1);
cell = document.createElement("td");
cell.setAttribute("class", "formDataAlign");
cellText = document.createElement("input");
cellText.name = textboxName;
cell.appendChild(cellText);
row.appendChild(cell);
tblBody.appendChild(row);
}
tbl.appendChild(tblBody);
body1.appendChild(tbl);
//This is the code for trying to put table at needed place but not working.
var mainRow = document.createElement("tr");
var mainCell = document.createElement("td");
cellText = document.createTextNode(tbl);
mainRow.appendChild(cellText);
mainTable.appendChild(mainRow);
mainTable.style.display = "";
}
By using above code my table is created but now I want to put it at some fixed place in my html page such as
HTML code:
<table width = "350" border = "1">
<tr>
<th colspan="4" align="left">
<strong>Work Experience Details</strong>
</th>
</tr>
<tr>
<td>
<table id="moreWorkTd" width="100%" border="0" style="display:none">
//Here I want that created table.
</table>
</td>
</tr>
</table>
<input type="hidden" name="clickCounter" value="0" />
Can you tell me that how I can put it on decided place??
Thank you in Advance.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
If I undestand you correctly, you're trying to add an element at a specific point in the DOM?
First, call dovument.createElement to actually create it, specify the attributes you would like, then get a reference to the table's intended parent using document.getElementById, then call parent.appendChild(element)
"Now I guess I'll sit back and watch people misinterpret what I just said......"
Christian Graus At The Soapbox
|
|
|
|
|
Hi all,
A quick thanks to everyone who pointed me to PHP - Its going good !!
However i do have a small problem
The bellow code is never getting into the scond if when i know that $userId and $passord are correct. and also the SQL returns the correct values in the db. I have done a print $rec['userid']; print $rec['password']; but they appear to be blank
any Ideas ???
if($rec=mysql_fetch_array(mysql_query("SELECT * FROM user WHERE UserName='$userid' AND Password = '$password'")))
{
if(($rec['userid']==$userid)&&($rec['password']==$password))
{
Thanks Lots
John
|
|
|
|
|
I will need to see more of the script to help you.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Can you describe it more???
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi all
Thanks for the response. sorry for the lack of detail in my last post !!
Bellow is the PHP I use to check login.
Any help would be fab
Wrong Login. ";
session_unset();
}
?>
|
|
|
|
|
You wrote:
"if($rec=mysql_fetch_array(mysql_query("SELECT * FROM plus_signup WHERE userid='$userid' AND password = '$password'")))
{
if(($rec['userid']==$userid)&&($rec['password']==$password))"
If you are fetching record with got values of userName and Password then why you again compare them??
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
One More thing that I want to know that how you are storing password in the database??
I mean simply store it or by using "password('$password')"??
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi,
Thanks for the responce !!!
I did the bellow code because i wasnt sure what it would return if nothing was found !!!
if(($rec['userid']==$userid)&&($rec['password']==$password)){
However on testing $rec['userid'] and $rec['password'] do appear to be blank but the below code works correctly. so i am confused as to how it is bringing the result of the SQL back correctly but $rec seems to be empty
if($rec=mysql_fetch_array(mysql_query("SELECT * FROM plus_signup WHERE userid='$userid' AND password = '$password'")))
{
}
else {
Wrong Login. Use your correct Userid and Password and Try ";}
My userid and password are currently just varchars in my database, I mannually entered them.
I am note sure if my explanation is clear. Please tell me if it isnt !
Thanks LOTS !! !!
John
|
|
|
|