8,966 Posted Topics

Member Avatar for phoenix254
Re: Html

They mean nothing, it's an ASP feature to write code in a HTML page.

Member Avatar for cereal
0
96
Member Avatar for dbfud1988
Member Avatar for dbfud1988
0
86
Member Avatar for Niloofar24

Am sure the next thing is "I need the images and downloads in all links too". Why not use a tool like `wget`, you can call it if you have execute rights on your system, and it will download anything it can find, you specify how deep it should go.

Member Avatar for diafol
0
609
Member Avatar for theredhosting

http://www.hbo.com/boxing I hope Mayweather gets a decent beating ;)

Member Avatar for Warrens80
1
272
Member Avatar for UK-1991
Member Avatar for Gideon_1
0
163
Member Avatar for erum

Hmz, looks okay as far as I can tell. Unfortunately I cannot test your code right now. A workaround can be to use `ModelState.AddModelError()`

Member Avatar for pritaeas
0
159
Member Avatar for Elize87

<%@ page language="C#" autoeventwireup="true" inherits="welcome, App_Web_tuwlsmxq" %> Do you have the `welcome, App_Web_tuwlsmxq` in your own code? `Inherits` should contain the class name of your page.

Member Avatar for pritaeas
0
306
Member Avatar for Shahin alam
Member Avatar for paulo.guedes1992

You can only move a file to an absolute or relative path. So you'll have to replace `SITE_ROOT` with an actual path to your folder.

Member Avatar for pritaeas
0
863
Member Avatar for StuntHacks

The fetch functions return one row of the result set, which is returned by a query you execute against that big table. Make the right query so the database server does all the hard work.

Member Avatar for Gideon_1
0
419
Member Avatar for Dipanjana
Member Avatar for UK-1991

> dont know whyy its not working What is not working? What did you expect to happen, and what didn't? If it's the query, I suggest you add error checking.

Member Avatar for UK-1991
0
293
Member Avatar for coder91

> Assuming this is the type being passed to the stored procedure? Correct.

Member Avatar for coder91
0
156
Member Avatar for diafol

As usual.... I don't like it. I thought I had accidentally actived the browser's zoom. I have a high resolution so I can see more on a screen, not less.

Member Avatar for pritaeas
0
187
Member Avatar for Taimoor_4

> help me What do you have so far, and what do you need help with. We do not provide solutions, please read [our rules](https://www.daniweb.com/community/rules).

Member Avatar for pritaeas
-1
118
Member Avatar for Trabelsi

Can you show a screenshot of what exactly you need? If it is just a checkboxlist, it might be easy enough to build yourself. Or are you perhaps using more features of the Editor plugin?

Member Avatar for pritaeas
0
850
Member Avatar for anil14353
Member Avatar for pritaeas

Did you change the frequency of notification e-mails? Yesterday cereal voted on a post, and I got an email today. I've noticed this last week too, yet remember getting them almost instantly before that.

Member Avatar for Dani
1
530
Member Avatar for UK-1991
Member Avatar for UK-1991
1
745
Member Avatar for UK-1991

@hericles is right, that is what happens. The variable `$paper` never gets a value. Your `if` on line 3 is probably not what you want. My guess is you want this: if ( preg_match("/^[ a-zA-Z0-9]+/", $_POST['brand']) && preg_match("/^[ a-zA-Z0-9]+/", $_POST['model']) && preg_match("/^[ a-zA-Z0-9]+/", $_POST['new']) ) Meaning all three search terms …

Member Avatar for UK-1991
0
148
Member Avatar for Dipanjana

> textArtist does not exist in current context If you want to use `textArtist` the input has to have `runat="server"` > I have also created a namespace using Mygenerations with the artist and song table What did you do exactly?

Member Avatar for Dipanjana
0
951
Member Avatar for infoitmanoj

> functions are not working It would be more helpful if you stated what is supposed to happen, and what doesn't happen. "It's not working" is too vague for any question.

Member Avatar for pritaeas
0
313
Member Avatar for s.ganesh

`CONCAT` is a string function, am surprised you even get that one row. The query you get is: select c_id,c_name from category where c_id in ('870,854'); My guess is that the string is being casted to an int again, resulting in 870.

Member Avatar for s.ganesh
0
210
Member Avatar for Benyam

command.CommandText = @"select * from log where [User Name]='" + textBox1.Text + "' and Password='" + textBox2.Text + "'"; User name contains a space, so it needs to be in brackets. Otherwise the query parser treats it as two seperate words.

Member Avatar for JerrimePatient
0
258
Member Avatar for kouty

> How may we delete or update a question? Delete: you cannot. You may request it from a moderator, but it is unlikely your request will be honoured. Update: You have 30 minutes to edit your question, after that it is locked. Additions after that time will have to be …

Member Avatar for kouty
0
305
Member Avatar for SalmiSoft

Does this help? http://stackoverflow.com/questions/2109366/changing-the-mysql-query-delimiter-through-the-c-api

Member Avatar for SalmiSoft
0
253
Member Avatar for joshl_1995

What's on those tab pages? Am sure it's possible to write a generic routine that can reset your components.

Member Avatar for pritaeas
0
1K
Member Avatar for webdev2
Member Avatar for younes.keraressi

You can with a htaccess redirect, but from what I can tell: wouldn't it be easier to use only one php file and include a different stylesheet?

Member Avatar for younes.keraressi
0
294
Member Avatar for UK-1991
Member Avatar for izham_1
Member Avatar for blueguy777

if($msg == "success") That's case sensitive, and should be: if ($msg == "SUCCESS") or: if (strtolower($msg) == "success")

Member Avatar for blueguy777
0
318
Member Avatar for theredhosting

What platform are you using, and what are your requirements? Do you need something that runs directly against your database, or are you integrating with an application of your own?

Member Avatar for pritaeas
0
124
Member Avatar for pritaeas

https://www.daniweb.com/software-development/python/threads/495488/sieve-of-erastothenes-simply-with-nested-loops This thread is listed in the python forum, but clicking it shows an error. Wanted to remove it because it's a duplicate.

Member Avatar for pritaeas
0
177
Member Avatar for SimonIoa
Member Avatar for shashigowda

Personally, I prefer to use a tool like [datatables.net](http://datatables.net). What exactly are your requirements?

Member Avatar for pritaeas
0
170
Member Avatar for jkon

From what I've read the default settings for InnoDb are pretty bad. https://www.percona.com/blog/2013/09/20/innodb-performance-optimization-basics-updated/

Member Avatar for pritaeas
0
248
Member Avatar for dosek125

It's a small piece which looks very reasonable. I do have one question. Why do you use `method_exists`? Wouldn't it be cleaner to require an interface on each controller to force the implementation of `execute`?

Member Avatar for lorenzoDAlipio
0
271
Member Avatar for OsaMasw

You can also use cUrl to call your own pages without waiting for it to finish. The only problem is that you have to implement something to detect that a file is being handled. My choice would be to implement a cron job that processes files at regular intervals.

Member Avatar for diafol
0
322
Member Avatar for pritaeas

This post is in the unresolved post section: https://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/19022/browser-redirectaboutblankother-problems- But I cannot edit it. It just disappears when clicked.

Member Avatar for Dani
0
201
Member Avatar for K. Chris
Member Avatar for AntonyRayan
Member Avatar for pritaeas
0
205
Member Avatar for dtpp
Member Avatar for kadriirdak

Sort your list by start date, then the end date of row N should be one less then the start date of row N+1.

Member Avatar for kadriirdak
0
271
Member Avatar for JasonWung

Like this? foreach ($images as $image) { echo '<div class="small-box">' . image_html($image) . '</div>'; }

Member Avatar for ryantroop
0
199
Member Avatar for pritaeas

For one of our projects we are looking for a Word editor that can be used in ASP.NET without the need of Office/Word being installed on the server. The requirement is that we need to be able to edit Word mail merge templates online. Any advice or pointers welcomed.

Member Avatar for pritaeas
0
242
Member Avatar for Violet_82

> Does it mean that in the real world application developers need to add an awful lot of code to make sure that the app works across the globe Usually, yes. Although the tools we use are providing more and more support. I've worked on a hotel booking system years …

Member Avatar for Violet_82
0
806
Member Avatar for Violet_82

> wouldn't we do You can do that if you provide a constructor that accepts those two parameters: public class CompanyInfo { public string Name { get; set; } public string Description { get; set; } public CompanyInfo(string name, string description) { Name = name; Description = description; } } …

Member Avatar for Violet_82
0
1K
Member Avatar for Sutarusu
Member Avatar for pritaeas
0
897
Member Avatar for Arjay Joseph

The End.