Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #1K
~10.9K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for Hakoo

I think hericles has got it right... In a web browser go the your localhost address for the page you want to validate. "View Source" of that page, and copy and paste that into the validator.

Member Avatar for mikev2
0
244
Member Avatar for nickg21
Member Avatar for UFO Disko

On line 32 you have a closing </strong> tag without an opening one. That might have something to do with it?

Member Avatar for mikev2
0
627
Member Avatar for haribo83

I'm not really a php man so the syntax may not be quite correct, but I think you're maybe looking for something like this... [CODE] <?php echo str_replace("\n","<br />",$row_jobdetails['job_description']); ?> [/CODE]

Member Avatar for nishchal_619
0
4K
Member Avatar for Jazerix

I think you're looking for the MySqlDataReader. Something like: [code] string myQuery = "SELECT * FROM members WHERE name = @name"; string connectionString = "<Your connection string here>"; MySqlConnection con = new MySqlConnection(connectionString); MySqlCommand cmd = new MySqlCommand(myQuery, con); cmd.Parameters.AddWithValue("name", "jazerix"); cmd.Connection.Open(); object result; MySqlDataReader dr = cmd.ExecuteReader(); while (dr.read()) …

Member Avatar for mikev2
0
114
Member Avatar for cafekko

Another possibility is to add a RadioButtonList, with visible=false into the .aspx in the place where you want the RadioButtons to be. Then I think dynamically adding the radio buttons (and visible="true") to that existing list will work.

Member Avatar for Lusiphur
0
232
Member Avatar for c0deFr3aK

Like the other posters, I'm not sure what you're doing with a Messagebox in a webform. But if it really is working, then declaring str1 as static, like so, should sort it out I think... [CODE] protected static string str1; protected void Button1_Click(object sender, EventArgs e) { str1 = "some …

Member Avatar for Lusiphur
0
151
Member Avatar for hirenpatel53

A couple of things to check... Is it in the junk folder of the receiving account? Is there a non-delivery report in the mailbox of the "From" account?

Member Avatar for hirenpatel53
0
130
Member Avatar for grafiksinc

On line 20 it looks like you've copied/pasted a bit weirdly... I think it should be: [CODE]sqlCmd.Parameters["@ut_1"].Value = ddl.SelectedItem.Value;[/CODE]

Member Avatar for stardust16
0
747
Member Avatar for ja3_bhende

Can you post some of the generated html code for the menu? Maybe that'll give someone a place to start thinking.

Member Avatar for mikev2
0
135
Member Avatar for reza.adinata
Member Avatar for reza.adinata
0
188
Member Avatar for Aenonar

If the webpage with the clock is something which you can edit, and if the webhost allows php, asp, or any other language which calculates on the server - then you could display the time in a much more accessible format. Then you're existing code could work. The time server …

Member Avatar for bbman
0
117
Member Avatar for culebrin
Member Avatar for Modi2006

I'm struggling to see the reason for the result you're trying to get - currently you're looping every item of the repeater twice, which seems unnecessary for this output. To get the output in the form you want, try moving the point where the "#" + i + "#" is …

Member Avatar for Modi2006
0
90
Member Avatar for tuomari

This will first select the top 5 records in the wrong order into the innermost select, call that table 'a' and then re-order that table for the result that's returned... [CODE]strSQL = "SELECT * FROM (SELECT TOP 5 * FROM [" + DropDownList2.SelectedValue + "] WHERE HOLE_ID = '" + …

Member Avatar for mikev2
0
100
Member Avatar for ajwei810192

Do you have overflow:hidden [I]anywhere[/I] in your stylesheet? To me, it sounds very much like the problem is in the css somewhere.

Member Avatar for ajwei810192
0
317
Member Avatar for mr webster

Try changing the CInt to CDbl - I can't remember what the limit on integer size is, but it might be that objDisk.Freespace is bigger than it.

Member Avatar for mikev2
0
344
Member Avatar for Gaurav@17

Hi Gaurav, I'm quite new to this too - and I'm trying to do a similar thing. I'm not sure if this is a good idea or not - but you could compare the number of commas in the text field and the hidden field? If they match, then add …

Member Avatar for reach_yousuf
0
586

The End.