Click here to Skip to main content
15,911,039 members
Home / Discussions / Web Development
   

Web Development

 
QuestionHow to upload a asp.net project to server to make it online. Pin
coolsatty9-Jan-08 20:42
coolsatty9-Jan-08 20:42 
AnswerRe: How to upload a asp.net project to server to make it online. Pin
Expert Coming10-Jan-08 14:58
Expert Coming10-Jan-08 14:58 
GeneralRe: How to upload a asp.net project to server to make it online. Pin
coolsatty10-Jan-08 18:01
coolsatty10-Jan-08 18:01 
GeneralRe: How to upload a asp.net project to server to make it online. Pin
Expert Coming10-Jan-08 19:45
Expert Coming10-Jan-08 19:45 
GeneralRe: How to upload a asp.net project to server to make it online. Pin
coolsatty10-Jan-08 20:41
coolsatty10-Jan-08 20:41 
QuestionSome help on passing a parameter in text HTML? Pin
Ismailc9-Jan-08 20:41
Ismailc9-Jan-08 20:41 
GeneralRe: Some help on passing a parameter in text HTML? Pin
Declan Bright10-Jan-08 3:21
Declan Bright10-Jan-08 3:21 
QuestionRe: Some help on passing a parameter in text HTML? Pin
Ismailc10-Jan-08 22:06
Ismailc10-Jan-08 22:06 
Hi: Thank You very much but the idea did not come off as what i thought!
I found another script but my initial problem is not fixed!
script:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
;(function(){
var field='Something', //set the name of the field
getQval = function (n) {
var r=new RegExp('[?&;]'+n+'=([^&;#]*)'), m=location.search;
return (m=r.exec(m))? unescape(m[1]) : null;
}, updateForm = function() {
var fname=getQval('fname')? getQval('fname') : 0;
document.forms[fname].elements[field].value=val;
}, val=getQval(field);
if(val){
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", updateForm, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", updateForm );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
updateForm();
};}
else window.onload = updateForm;}}})();
</script>
</head>
<body>
<form action="ajax.htm">
<div>
<input type="text" name="Something">
</div>
</form>
</body>
</html>


I downloaded this example: Dowlod this example - very small file!http://www.codylindley.com/blogstuff/js/jtip/
from the net to fix the problem i have with my projects tooltip. We use the 'ALT' on a image to give tooltips so I download a workaround from the net - which works but it displays typed text pages.
so if i had 5 fields with tooltips - i would have to create 5 html pages. So i thought of passing a parameter like you assisted but the tooltip does not picki t up.

The script works great on page1 to page2
but not on the below code: on mouse over it shows the next page with text box but blank-no value - but if I open i new window then the value is there!

Please download the example - i'm not to sure how to fix this!

<html>
<body>
This works:<A HREF='ajax.htm?Something=test'>Click here</A>

Example from Net does not like it
<style type='text/css' media='all'>@import 'css/global.css';</style>
<script src='js/jquery.js' type='text/javascript'></script>
<script src='js/jtip.js' type='text/javascript'></script>
<tr>
<td colspan="10" align="center">
<a id="one" href="ajax.htm?Something=test" class="jTip">?</a>
</td>
</tr>


</body>

</html>
GeneralTroubleshooting application Pin
mcd24249-Jan-08 8:54
mcd24249-Jan-08 8:54 
QuestionIn ASP.Net, How to call session or application variable using Java script? Pin
hifiger20049-Jan-08 4:39
hifiger20049-Jan-08 4:39 
AnswerRe: In ASP.Net, How to call session or application variable using Java script? Pin
Shog99-Jan-08 7:12
sitebuilderShog99-Jan-08 7:12 
GeneralRe: In ASP.Net, How to call session or application variable using Java script? Pin
hifiger200411-Jan-08 15:17
hifiger200411-Jan-08 15:17 
AnswerRe: In ASP.Net, How to call session or application variable using Java script? Pin
Vasudevan Deepak Kumar9-Jan-08 20:36
Vasudevan Deepak Kumar9-Jan-08 20:36 
QuestionHow to setup performance counters in a web setup project Pin
harleydk9-Jan-08 3:46
harleydk9-Jan-08 3:46 
QuestionRetrieving Outlook Exchange Details in ASP.NET Pin
T G Shiva8-Jan-08 21:41
T G Shiva8-Jan-08 21:41 
GeneralIGNORE, this is a repost from the ASP.NET forum Pin
Declan Bright8-Jan-08 23:09
Declan Bright8-Jan-08 23:09 
General[Message Deleted] Pin
R_L_H8-Jan-08 15:16
R_L_H8-Jan-08 15:16 
Generalwarning: bad words in here.... Pin
Malcolm Smart9-Jan-08 3:19
Malcolm Smart9-Jan-08 3:19 
Question[Message Deleted] Pin
R_L_H9-Jan-08 13:51
R_L_H9-Jan-08 13:51 
GeneralRe: warning: bad words in here.... Pin
Malcolm Smart9-Jan-08 23:55
Malcolm Smart9-Jan-08 23:55 
QuestionJava Script doesn't work in my ASP.Net, wrong code? Pin
hifiger20048-Jan-08 10:16
hifiger20048-Jan-08 10:16 
AnswerRe: Java Script doesn't work in my ASP.Net, wrong code? Pin
Nilesh Hapse8-Jan-08 18:22
Nilesh Hapse8-Jan-08 18:22 
GeneralRe: Java Script doesn't work in my ASP.Net, wrong code? Pin
ram19748-Jan-08 18:26
ram19748-Jan-08 18:26 
GeneralRe: Java Script doesn't work in my ASP.Net, wrong code? Pin
Malcolm Smart9-Jan-08 3:22
Malcolm Smart9-Jan-08 3:22 
GeneralRe: Java Script doesn't work in my ASP.Net, wrong code? Pin
Nilesh Hapse10-Jan-08 20:32
Nilesh Hapse10-Jan-08 20:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.