 |

|
I have 25 years of development experience - all of it Windows. I started with GB-Basic, then on to FoxPro/Visual Foxpro, and for the last 10 years I have been doing C# WinForms & WPF.
I want to start learning to do web development. I tinkered around with ASP.Net MVC 3 for a while, and that's about the extent of my experience.
I literally know next to nothing about web development. So where do I start? Can someone recommend decent entry level books or tutorials?
Many thanks
If it's not broken, fix it until it is
|
|
|
|
|

|
I actually like the WROX books myself.
http://www.wrox.com/WileyCDA/Section/ASP-NET.id-105058.html[^]
Glad to hear your making the jump to web development. My career stared with VAX/VMS Fortran programming and I continue to learn new things every day.
The folks here are extremely helpful, you can learn alot from this community.
Good luck.
|
|
|
|

|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<title>Company Details </title>
<script src="../../Scripts/jquery.validate.js" type="text/javascript"></script>
<script src="../../Scripts/RichTextEdit.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
// new nicEditor().panelInstance('txtAreaLatestNews');
// new nicEditor().panelInstance('txtAreaPromotionText');
Company.LoadCompanySelectedData(0);
});
</script>
</head>
<body>
<form id="frmCompanyDetails" name="frmCompanyDetails">Company Details
<label class="control-label" for="txtCompanyName" style="text-align: left !important">
Company Name *</label>
<input id="Text1" name="txtCompanyCode" type="text" maxlength="10" class="span12" />
<input type="hidden" id="hdnCompanyID" />
<label class="control-label" style="text-align: left !important">
Address</label>
<label class="control-label" for="txtAddress" style="text-align: left !important">
Address</label>
<textarea id="txtAddress" rows="3" name="txtAddress" class="input-xxlarge span12"
placeholder=".input-xxlarge"></textarea>
<label class="control-label" for="txtPOBox" style="text-align: left !important">
PO Box </label>
<input id="txtPOBox" name="txtPOBox" type="text" maxlength="10" class="span12" />
<label class="control-label" style="text-align: left !important">
Contact</label>
<label class="control-label" for="txtTelPrime" style="text-align: left !important">
Tel. (Primary) </label>
<input id="txtTelPrime" name="txtTelPrime" type="text" maxlength="10" class="span12" />
<input id="txtTelPrimeNum" name="txtTelPrimeNum" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtTelSec" style="text-align: left !important">
Tel. (Sec.) </label>
<input id="txtTelSec" name="txtTelSec" type="text" maxlength="10" class="span12" />
<input id="txtTelSecNum" name="txtTelSecNum" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtFaxPrime" style="text-align: left !important">
Fax. (Primary) </label>
<input id="txtFaxPrime" name="txtFaxPrime" type="text" maxlength="10" class="span12" />
<input id="txtFaxPrimeNum" name="txtFaxPrimeNum" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtFaxSec" style="text-align: left !important">
Fax. (Sec) </label>
<input id="txtFaxSec" name="txtFaxSec" type="text" maxlength="10" class="span12" />
<input id="txtFaxSecNum" name="txtFaxSecNum" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtEmailPrime" style="text-align: left !important">
Email (Primary) </label>
<input id="txtEmailPrime" name="txtEmailPrime" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtEmailSec" style="text-align: left !important">
Email (Sec) </label>
<input id="txtEmailSec" name="txtEmailSec" type="text" maxlength="10" class="span12" />
<label class="control-label" for="txtWebsite" style="text-align: left !important">
Website </label>
<input id="txtWebsite" name="txtWebsite" type="text" maxlength="10" class="span12" />
<label class="control-label" style="text-align: left !important">
Image</label>
<input id="btnSave" type="button" class="btn btn-primary btn-small" value="Save"
önclick="javascript: Company.Save()" />
</form>
</body>
</html>
|
|
|
|
 |
Message Automatically Removed
|
|
|
|

|
I am adding refernece link below.
www.mobile.de
<div id="google_translate_element"></div><script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'cs,de,es,fr,it,nl,pl,pt,ro,ru', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, multilanguagePage: true}, 'google_translate_element');
}
</script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
I added to above code.But country flags are not coming.
|
|
|
|

|
I have two applications, both asp.net mvc3 projects. Both of them were working fine. But after a while I get the 'resource cannot be found error' if I run them.
Please does any one know what could be the cause of this problem?
Thanks in anticipation of helpful responses.
|
|
|
|

|
Have you moved files or directories about? Resources in C# sit in a namespace based on the file and directory location.
'Howard
|
|
|
|

|
Hi Howard,
I can remember I created a new folder a while ago and moved some file to it but cant remember if it was after I had created the projects. Thanks very much....that really makes sense.
One more question please,in the case of moving files about...please how do i fix the problem?
|
|
|
|

|
I am converting sql stored procedure to sybase . i came cross some datatypes like
declare @mask ident declare @type ident declare @start varchar(max) . Ident and max vachar are not supported in sybase. What will be correct alternative datatype which i can use for sybase.
|
|
|
|

|
In my experience a SQL identity has been an integer which is automatically incremented when a row is inserting into that table. Typically the identity column has been used as the primary key for the table.
Varchar(max) may be a text field in Sybase.
See if this is helpful ...
http://doc.ispirer.info/sqlways/Output/SQLWays-1-141.html[^]
Good luck.
|
|
|
|

|
Hello All,
Could anyone please help with suggesting the technique that I can follow to achieve the following.
I need to create a drop down form/division.. just like gmail-advance-search-option, where the drop down form pops up on clicking on a link.
Please note that my drop down division content is dynamic, ie must be sent by server dynamically (depending on a parameter which user selects previously).
Detail/example: So lets say user selects the option X and click on the buton/link to collapse the drop-down form. At this time, we should receive the form (belongs to the option X) from the server and client should display it. On click on submit, some search should be perform.
PHP is a must.
Could you please let me know the technique to achieve the same..Ajax/Jquery sounded helpful to me . but i have almost 0 knowledge on them . . . . An example or link would be highly appreciated.
Sorry if it sounds basic I am a new bee to web development.
Thanks
Hrishi
|
|
|
|

|
hi to all
hoe can i pass an data to a user control;
ia have a user control A that this userControl have usercontrol B in self;
ant i want pass a data from outer of user control A to User control B .how can do this.
any help will be useful
thanks
|
|
|
|

|
Expose public properties in the Usercontrols such that data assignment and accessibility is easily achieveable.
Once you have the properties in place, all you would need is to get the instance of the user control and then you can get-set that property value which internally can be set for controls in the UC.
|
|
|
|

|
ok but iwant access this property in .asx file then
i have to define a protected property .and i cant access protected property outside of usercontrol by usercontrol.propertyname.
do you have idea fo this.
thanks for answer
|
|
|
|

|
mehdi.sabet wrote: i have to define a protected property .
Define public property and you will be able to access.
|
|
|
|

|
Hello,
I created a custom polygon with the pen tool in photoshop and I gave him the style 0 % fill opacity
and I want to change the color of the border that stay
I tried to apply the pen tool bucket but it not work for this border
same problem with the width and I do not know how to change (I'm not talking about blending option)
do you have an idea
thank you
|
|
|
|

|
How to create multiple moving points in Google maps using Google API?
I need to create a simulation of buses moving along the routes through bus stops.
Thank you
|
|
|
|
|

|
Hi,
I am used to writing code in MFC/CPP(visual studio 97,which has excelent support facilities),and am trying to start a web app in MVC. Where do I find a reference about what is stored in each directory or File.Where do I find a reference about how it fits together. I do not want more tutorials about how to do things, but an overview of how this all fits together. Surely, Microsoft had a design spec readible to humans, when they wrote all this. Where do I find this level of info.
Basic things, like What's the difference between a 'Project', 'WebSite'or 'Solution'
Bram.
Bram van Kampen
|
|
|
|
|

|
Hi,
Well, actually I had hoped for something less wordy, an overview to keep as reference.
Thanks,
Bram van Kampen
|
|
|
|
|

|
Hi,
I am migrating an application to ASP.Net,SQL, etc, from my own DB Format, written in MFC/CPP.
My own Order Record format (struct) contains an array of upto 31 entries. Each entry is a structure in its own right, containing Display Info such as Quantity,Description, Price,as well as info like 'Whodonnit', 'WhoCanEdit' WhenDone, and various other titbits of interest. In MFC/CPP I implemented this by simply declaring an array of these things inside my 'Table'structure. What is the agreed way of doing this in SQL.
Bram van Kampen
|
|
|
|

|
I'm not much of a web developer, so I'm asking out of ignorance...
I need to put up a simple web site for myself. Just a page for now with some introductory info and an email link.
Can I get free website templates that I can open in VS2010? If so, where?" I'v never done this before so for now I want to keep it stupid simple.
Thanks
If it's not broken, fix it until it is
|
|
|
|
|

|
Thank you
If it's not broken, fix it until it is
|
|
|
|

|
I know nothing about Certificates other than they're used for SSL. I've never had to deal with client certs and I am completely lost.
We have a legacy app that requires a client cert. A new vendor is trying to connect to this application. They issued the cert and sent it to us, but I'b having some trouble getting it to work. I've got IIS set up correctly, based on the many articles I've read.
A basic understanding of certs is making this more difficult than I think it should be, so I'm hoping someone can answer some of my questions:
1. They issued a .cer file. When installd on my client maching I don't seem to have a private key with it. Should there be?
2. What's the difference between a .pfx and .cer? I've tried googling this and the textbok answers don't help. Can a .cer have a private key, or is that only in a .pfx?
EDIT: One more question.
The vendor sent us the client cert we should be using, it is issued by themselves. It's my understanding that I also need a Root cert from them to put into our Trusted Root store to go along with this, is that correct?
modified 21-Feb-13 13:23pm.
|
|
|
|

|
i hav created a flexigrid and i want to filter the records by searching different different attributes? can any 1 help me?
Abdul Ahad
|
|
|
|

|
I have over 15 years of basic webforms experience. I need to correct a site that completes file uploads written in 2006 with a basic basic HTML file uploader. Its issues include no response to the user on occassion. I've been reading about the BufferlessStream and the JQRY Valums uploader
Is there any possibility of the bufferless stream working with web handler and webforms? or is undertaking my first MVC the only option?
This is a new path for me and I'm finding the numerous branches of information a tad bit overwhelming. What is a good starting point?
Thanks for any advice
Lisa
|
|
|
|

|
There are definitely options out there that will work with web handlers and webforms. I use a modified version of the blueimp file uploader on a couple of my webform applications. It supports drag and drop uploading, multiple files at a time, chunked uploads for large files, progress bars, etc.
Do a search for "blueimp multiple file uploader" and check out the examples they have. Then if you have any specific questions I'll do the best I can to answer them.
Dave
|
|
|
|

|
Thank you so much for your reply. I will most definately look into the control.
Lisa
|
|
|
|

|
I am having problem connecting to Oracle 11g database using PHP
|
|
|
|

|
Can anybody provide the source code for "Online shopping" using JSP & Servlets for free???
It will be better if it is possible to alter the coding in Eclipse or Netbeans IDE...
Thank you
|
|
|
|

|
Member 9817107 wrote: It will be better if you go and do some research for yourself.
|
|
|
|

|
google "jsp online shopping code"
Steve
_________________
I C(++) therefore I am
|
|
|
|

|
Hello,
I am a Moroccan student resident in Morocco, at the beginning of a course of 4 months extendable PFE and I'm looking for an innovative idea realize a final project studies
I would like to inform you that we are binomials and we master web technologies : html, css, javascript, php5, Symfony2 ..........
and we aim to use these technologies to realize a web application has high traffic
That is why, we would like you to help us come up with ideas based on your experiences and any feedback that you think ...
thank you in advance
|
|
|
|

|
simontifo Quote: I'm looking for an innovative idea realize a final project studies No it wont work like that you may use google or other search engine to find "what is innovative to you" rather asking these kind of questions in forums.
If you have any problems in implementing your ideas, or you dont know how which platform to develop we do help you to solve the problems.
Your tutor is the best person to suggest you an idea if you are not able to find one.
|
|
|
|
|

|
Dear Fellow developer. I am a newbie in MVC. Recently I try to perform the following:
//--- Model
public class Skill
{
public bool IsSkill { get; set; }
public string SkillStr { get; set; }
}
public class PageModel
{
public string UserName { get; set; }
public string Address { get; set; }
public List skills { get; set; }
}
//---Controller
public ViewResult UpdateSkills(int id)
{
PageModel model = GetPageModel(id);
model.skills = GetSkills(id);
return View(model);
}
[HttpPost]
public ActionResult UpdateSkills(PageModel model)
{
if (ModelState.IsValid)
{
List SkillStr = new List();
// ERROR: model.skills null
foreach (Skill rw in model.skills)
{
if (rw.IsSkill)
{
SkillStr.Add(rw.SkillStr);
}
}
}
// ... Other code are omitted
}
//--- View
<!-- Other are omitted --!>
@foreach(Skill rw in Model.skills)
{
| @Html.EditorFor(m => rw.IsSkill) |
@Html.DisplayFor(m => rw.SkillStr) |
}
Now, the question that I am wondering is why the List skills become null when it returns from the view, while it was passed with value before the view is shown.
Does anyone have any clue what I am missing? I really can not figure out why.
Thank you for any enlightenment that you may provide.
|
|
|
|

|
well,I am very much a novice at this game. However, (and this may be wrong) your ListView info was passed to you via the server. You lost the connection (by Time-out),and your browser did not restore the page.This is both a good and bad thing.
Bram van Kampen
|
|
|
|

|
Thanks Bram,
I am quite confused actually.
When the Controller pass the data, the Username, Address and the list of skills are passed to the View properly. I can display them.
But when the view post to the Controller, the Username and Address is passed properly. But not the list of skill.
Do you have any idea on how to handle it? It is actually a header-detail type of data passed between View and Controller.
|
|
|
|

|
friends i am going to start a project for the great mind challenge 2012 which is "VOICE BASED WEB BROWSER" but i am in confused state how i can start this project?
if u have any suggestion please tell me?
if u have any ideas how the browser look like?
so that i can analyze ideas and my project will be successful.
|
|
|
|

|
Start here[^] and good luck.
|
|
|
|

|
is there any other alternative rather than ASP.net?
|
|
|
|

|
Durgesh1704r wrote: is there any other alternative rather than ASP.net? Well you could try PHP, JSP etc., all of which have their own websites and books that you can find. It is usually best to get experience with the basics of the platform you are planning to work on before you try something as advanced as this project.
|
|
|
|

|
Durgesh1704r wrote: i am going to start a project for the great mind challenge 2012 which is "VOICE BASED WEB BROWSER"
Good to know.
Durgesh1704r wrote: i am in confused state how i can start this project?
Don't you have a defined course on it? Any teacher/professor taught you anything regarding websites?
Durgesh1704r wrote: if u have any ideas how the browser look like?
It's your project so you need to define the looks and features of it.
Durgesh1704r wrote: that i can analyze ideas
Think of it yourself, look on web if you can get anything. Break the whole thing into multiple small parts and pick/do one-by-one. Post specific issues and questions if you face any.
|
|
|
|

|
is ASP.net is compatible with speech?
|
|
|
|

|
Please go through the links shared with you. You have speech based libraries available for C#. Now how exactly you are planning to use is what all depends. Not sure how you plan to use a web app for speech. Do some research, Google.
|
|
|
|

|
The idea sounds good. But I am not sure how much help you can get on the questions you asked. Its your project so you need to define the most of it.
But since it is a Browser it will a client application (possible Winforms or WPF).
Something like this: Web Browser in C#[^]
And you will have to have this application capable enough to be able to learn and act on voice commands.
Something like this: Speech Recognition[^]
Perhaps the combination of both these projects itself is your complete project. But I thought I should atleast point you in right direction so that you know that it is totally feasible project.
Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore, Dream. Discover.
|
|
|
|
 |