- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
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.
Which line is the exception being thrown on?
On line 32 you have a closing </strong> tag without an opening one. That might have something to do with it?
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]
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()) …
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.
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 …
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?
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]
Can you post some of the generated html code for the menu? Maybe that'll give someone a place to start thinking.
Two questions which might help: 1. Is there a file at "C:\bla.jpg" on the server? 2. What is 'Content' ?
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 …
Are you setting the initial value of the textbox during the page load?
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 …
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 = '" + …
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.
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.
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 …
The End.
mikev2