Click here to Skip to main content
15,905,414 members
Home / Discussions / Web Development
   

Web Development

 
QuestionBUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 6:38
hifiger200411-May-07 6:38 
AnswerRe: BUTTON OVER IMAGE IN ASP.NET? Pin
Fred_Smith11-May-07 7:33
Fred_Smith11-May-07 7:33 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 8:01
hifiger200411-May-07 8:01 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
Fred_Smith11-May-07 8:25
Fred_Smith11-May-07 8:25 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 8:47
hifiger200411-May-07 8:47 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? [modified] Pin
Fred_Smith11-May-07 9:23
Fred_Smith11-May-07 9:23 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 10:07
hifiger200411-May-07 10:07 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
Fred_Smith11-May-07 9:53
Fred_Smith11-May-07 9:53 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 17:33
hifiger200411-May-07 17:33 
GeneralRe: BUTTON OVER IMAGE IN ASP.NET? Pin
hifiger200411-May-07 17:48
hifiger200411-May-07 17:48 
Questionasp mailler [modified]----solved Pin
emrefc11-May-07 5:41
emrefc11-May-07 5:41 
QuestionClearing the QueryString Pin
#realJSOP11-May-07 5:33
professional#realJSOP11-May-07 5:33 
AnswerRe: Clearing the QueryString Pin
JimmyRopes12-May-07 5:50
professionalJimmyRopes12-May-07 5:50 
GeneralRe: Clearing the QueryString Pin
#realJSOP12-May-07 7:52
professional#realJSOP12-May-07 7:52 
GeneralRe: Clearing the QueryString [modified] Pin
JimmyRopes12-May-07 9:49
professionalJimmyRopes12-May-07 9:49 
AnswerRe: Clearing the QueryString Pin
badgrs14-May-07 3:34
badgrs14-May-07 3:34 
You can easily submit a form using a plain hyperlink, but of course it does rely on javascript. Create your form element with method="post" and all necessary hidden (or otherwise) fields and give it a unique ID. You can then use document.getElementById("formid").submit() on the onclick event of the hyperlink (or better yet, the onfocus event). Alternatives to this are document.forms[0].submit() and the like but I'm not sure of cross browser issues with that. If you keep the href attribute with your current method (query string params) this will also work without javascript.

Hmm, just read the above post in full (I know, I should done that first...) and the first method is similar. BTW, the <a> tag is an 'anchor' tag not 'address', and the <link> tag is for linking external documents such as style sheets, normally when people say a link they mean an anchor tag.
GeneralRe: Clearing the QueryString Pin
#realJSOP14-May-07 4:18
professional#realJSOP14-May-07 4:18 
GeneralRe: Clearing the QueryString Pin
JimmyRopes14-May-07 6:11
professionalJimmyRopes14-May-07 6:11 
GeneralRe: Clearing the QueryString Pin
#realJSOP14-May-07 4:20
professional#realJSOP14-May-07 4:20 
GeneralRe: Clearing the QueryString Pin
JimmyRopes14-May-07 6:27
professionalJimmyRopes14-May-07 6:27 
QuestionBizTalk Clarification Pin
Prashant C11-May-07 1:29
Prashant C11-May-07 1:29 
QuestionHow Do make a website reports Pin
Vimalsoft(Pty) Ltd11-May-07 1:21
professionalVimalsoft(Pty) Ltd11-May-07 1:21 
AnswerRe: How Do make a website reports Pin
Fred_Smith11-May-07 1:54
Fred_Smith11-May-07 1:54 
GeneralRe: How Do make a website reports Pin
Vimalsoft(Pty) Ltd11-May-07 2:11
professionalVimalsoft(Pty) Ltd11-May-07 2:11 
GeneralRe: How Do make a website reports Pin
Fred_Smith11-May-07 2:34
Fred_Smith11-May-07 2:34 

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.