
|
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|

|
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|

|
I want to Customize WebApi2 Oauth security provider. I want to use my own data base and own DbContext. Please help me how to do?
I am using asp.net 2013.
Thanks
|
|
|
|

|
How do i add a blog on my ASP.NET webpage
|
|
|
|
|

|
Does this download give step-by-step instructions on how to add the codes to a website.
|
|
|
|
|

|
could u till me a free gateway for sending sms from different free sms providers please could any body tell me
|
|
|
|

|
DO NOT repost.
You have already asking this exact question four times in this forum, and received several helpful answers, none of which you have replied to.
Reposting the same question over and over again will only serve to annoy the people who would otherwise be trying to help you.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|

|
hi MVC4 Razor <a href="/Members/model">@model</a> - what's equivalent in ASPX view engine? Here's how it's done with Razor - how to do the same in ASPX? <a href="/Members/model">@model</a> IEnumerable<XYZ.Product> @{ ViewBag.Title = "Downloads"; Layout = "~/Views/Shared/_Layout.cshtml"; } <div> <table> <tr> <th>Name</th> <th>Description</th> <th></th> </tr> <a href="/Members/foreach">@foreach</a> (var Package in Model) { <tr> <td> <a href="/Members/html">@Html</a>.DisplayFor(modelItem => Package.Name) </td> <td> <a href="/Members/html">@Html</a>.DisplayFor(modelItem => Package.Description) </td> <td> <a href="/Members/html">@Html</a>.ActionLink("Download", "ProductDownload", Package) </td> </tr> } </table>
|
|
|
|