6
Aug/096
Aug/096
Asp.net Tutorial – Customer Login – Part1
Create a Full-Featured Customer Login Portal
Follow along through the creation of a fictitious customer portal to learn about master pages, themes, membership, roles, site navigation, user profil...




August 6th, 2009
what did you write @ 8:50 ?
August 7th, 2009
When trying to show information for just one CustomerID using ?CustomerID=ANTON the page displayed is blank. It works fine when I do not configure the data source. Do you have any suggestions?
August 7th, 2009
Try CustomerID=@ANTONBut this will make it STATIC, what you want to do is CustomerID=@CustomerID The @ sign means the page is expecting a variable/parameter to be passed to it before it’s displayed.Try it and let me know if it worked.
August 7th, 2009
Wait…i am sorry that’s not it.You should put ANTON between quotation marks since it’s constant, Try double quotation or single quotation i am not sure “ANTON” OR ‘ANTON’
August 7th, 2009
On the other hand if you want to make it dynamic, you should write it like that?CustomerID={0}The {0} means that you are sending a replacable paramatere {0} and the 0 will be replaced with the actual CustomerID that the user will click on.
August 7th, 2009
I actually was able to get it to work. I spent about 3+ hours trying to figure it out.Not sure what I did really though. I just played around with it a lot. I think what did it was editing the columns with the fields window.Are those templates downloadable? Also, try to make the videos more high quality..Can barely make out some of the code. I had to guess a lot.