|
My organization is choosing a Web CMS to rebuild our public-facing web site and I would like to beseech the community for their thoughts on potential web content management systems. The only two requirements is that it must be ASP.Net and use SQL Server. My additional requirement is the ability to interface with a NoSql document database (like MongoDb) for the storage of searchable text documents. I've looked at Umbraco and Orchard Project but, having never used a WCMS myself, I don't know what systems are available, what to look for, or what to use as a yardstick in product comparison.
Thoughts?
if (Object.DividedByZero == true) { Universe.Implode(); }
Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016
|
|
|
|
|
The most important factor is the thing you haven't mentioned...what is your budget?
|
|
|
|
|
That one hasn't been decided yet. We're preparing an Request for Proposal document and I want to gently nudge the decision makers down the path that will work best for those of us that have to maintain the thing once it is built. I think it is prudent to get as many arguments in our favor as possible before anybody gets their heart set on something that looks pretty in a demo but is in reality a pain in the arse to maintain.
if (Object.DividedByZero == true) { Universe.Implode(); }
Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016
|
|
|
|
|
If that's your aim then I'd recommend Sitecore[^]. You need to be realistic though, it is a very particular type of company that when faced with a choice between a 5 to 6 figure product and one that's free goes for the more expensive option because it does the better job. Chances are you're to end up with Umbraco 
|
|
|
|
|
And that is why am here asking about experiences and opinions for products that I have never seen in action and could not possibly describe. I am not going to try and sell a car by only reading the brochure.
if (Object.DividedByZero == true) { Universe.Implode(); }
Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016
|
|
|
|
|
|
Thanks, I will look into this one. Their list of clients looks promising. Just wish they had a lot more technical info on their website.
if (Object.DividedByZero == true) { Universe.Implode(); }
Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016
|
|
|
|
|
Hi my friends. I want to display the label of a polygon in asp.net using google map. Could you help me?
|
|
|
|
|
Where are you stuck?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
hi, I want to get a javascript code sample about it. For example.
var polygon1 = new google.maps.Polygon({
paths: polygon,
strokeColor: '#8b7d6b',
strokeOpacity: 0.4,
strokeWeight: 1,
fillColor: '#8b7d6b',
fillOpacity: 0.02,
label: "PolygonLabel",
fontWeight: "bold",
fontColor: "white"
});
Then I want to display "PolygonLabel" text inside the Polygon.
|
|
|
|
|
planet06 wrote: Then I want to display "PolygonLabel" text inside the Polygon. Isn't that what
label: "PolygonLabel", does?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
hi, you can see it. In this sample "Red" (Polygon's name) is displayed.
"http://stackoverflow.com/questions/32864627/google-maps-api-polygon-labels".
|
|
|
|
|
OK. So what does
label: "PolygonLabel", do?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
PolygonLabel is the name of Polygon.
|
|
|
|
|
|
|
hi, In this sample, "Red" (polygon's Name) is displayed.
"http://stackoverflow.com/questions/32864627/google-maps-api-polygon-labels"
|
|
|
|
|
Need to compare a string with a list of strings condition space and case insensitive.
sample code :
public class COMProjectNameValidator:IValidator
{
MessageInfo _MessageInfo = new MessageInfo();
public void Validate(object obj, MessageList MessageList)
{
COMProjectDTO _COMProjectDTO=(COMProjectDTO)obj;
if (DAOUtil.IsValuePersisted(typeof(COMProjectEntity), "Id", _COMProjectDTO.COMProjectId) == false)
{
IGenericExtnDAO<COMProjectEntity> IGenericExtnCOMProjectLoadDAO = DAOFactory.Instance.GetGenericDAO<COMProjectEntity>();
List<COMProjectEntity> _COMProjectEntityList = IGenericExtnCOMProjectLoadDAO.FindAll().Where(t => t.COMBranch!= null && t.COMBranch.Id == _COMProjectDTO.COMBranchId).ToList();
}
else
{
IGenericExtnDAO<COMProjectEntity> IGenericExtnCOMProjectLoadDAO = DAOFactory.Instance.GetGenericDAO<COMProjectEntity>();
COMProjectEntity _COMProjectEntity = IGenericExtnCOMProjectLoadDAO.Get(_COMProjectDTO.COMProjectId);
if (_COMProjectEntity.ProjectName != _COMProjectDTO.ProjectName)
{
IGenericExtnDAO<COMProjectEntity> IGenericExtnCOMProjectLoadDAOForExist = DAOFactory.Instance.GetGenericDAO<COMProjectEntity>();
List<COMProjectEntity> _COMProjectEntityList = IGenericExtnCOMProjectLoadDAO.FindAll().Where(t => t.COMBranch!= null && t.COMBranch.Id == _COMProjectDTO.COMBranchId).ToList();
if (_COMProjectEntityList.Select(t => t.ProjectName).ToList().Contains(_COMProjectDTO.ProjectName))
{
MessageInfo _MessageInfo = new MessageInfo(KEYS.COM_Project_Name_ALREADY_EXIST, AlertMessageTypeEnum.Error);
MessageList.Add(_MessageInfo);
}
}
}
}
}
|
|
|
|
|
And your question is?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Bro, i wanna check a "name" is there in the db. i got a list of names from DB. Need to compare input name with that list of names.
if giving a name, that inside the list it will show a message already exist that name.
pbm is if the user don't know how the name is stored in db.
eg:list in the DB
Mathew Jacob
emil manrne
merlin antony
etc
input name : mathew jacob
white space there in between the name, front and end of name
if compare both will show message its existing oke
i think u got my Question
|
|
|
|
|
Member 11781455 wrote: i think u got my Question Yes, I already understood that; however, I am not going to write the code for you so I am wondering what you want from us.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
no need. I thought u don't get my pbm thats y i explained it. solved the pbm no issue thank u for u r time.
|
|
|
|
|
I think you solved it, but for future reference, please do not text people here. It is considered lazy and rude.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
can any one give clarity on this because i am fresher and searching for job
TextBox1.Text=dr[0].Tostring();
|
|
|
|
|
The Text field of the control named TextBox1 is being set to the value in item 0 of collection dr , whatever that happens to be. This is basic C# and you would be expected to have complete understanding of such basics in order to gain employment. I suggest taking a look at .NET Book Zero by Charles Petzold[^].
|
|
|
|