8
m dhu
Posts
-
The Great Codeproject Euro2012 Sweepstake -
2012 MVPs announced...Congrats Nish.
-
Just received a nice emailCongrats Pete.
-
My 1st CP MVP AwardCongrats man.
-
spammeriimagegrapher[^] spamming in articles.
-
Want a solution for this problem -
create chat room -
how to show news on my page in between marquee using asp.net -
Is there any problem with this?If you look at the article the first posted date is 2 Sep 2011 but actually it is winner in July 2011 competition. Seems to be first posted is showing wrong.
-
Is there any problem with this?The same set of articles are displaying for all the months.
Suresh Suthar wrote:
I am still dreaming?
No I too see the same.
-
binding table data with img tag instead of image control in asp.netMember 7980675 wrote:
binding database values with img tag instead of image control
For asp.net Image control path is given to
ImageUrl
<asp:Image ID="img1" runat="server" ImageUrl='<%# Eval("path") %>'></asp:Image>
For HTML img path is set to
src
-
Unable to improve question -
Unable to improve questionwalterhevedeich wrote:
Have you tried editing the it to 50?
I tried with 49 characters and still received same error.
-
Unable to improve questionI tried to edit hi..i am Mrinal kanti mondal ,,,i am interesting to creat a project in' ''online councillling"in asp.net....can u give the concept of this..[^] question but received error message "Please keep the subject between 3 and 50 words. The better the question, the better your answer" though the characters are less than 50 and the original subject is more than 200 characters.
-
Insulting MeThis is the wrong forum. Other member has already said to post in Site-Bugs-Suggestions[^] forum when asked in QA section. So its better to post it there you will get better replies.
-
i want to select mssql2005 or mssql2008 where 2005, 2008 was instlled.I think the connection string you mentioned is for database in 2005. Similarly add another connection string pointing to database in sql 2008. :)
-
CSS for DropDownlistYou can download the dlls and you could use that control in the link mentioned above. 0)If you want only asp:DropDownList then I doubt you can change the color of arrow. 1)To change the color of the selected item
//changes the selected list item color
DropDownList1.SelectedItem.Attributes.Add("style", "color:Black; background:Orange;");
//changes the background color of DropDownList
DropDownList1.Attributes.Add("style", "color:Black; background:Orange;"); -
CSS for DropDownlistAFAIK I don't think you can change the scroll bar color for asp:dropdownlist. ASP.NET Color DropDown Control[^] might help you.
-
Allotment -
Can a web application run without Web.Config [modified]Your question Title and Description are completely different. Update it.
J walia wrote:
Can a web application run without Web.Config
Yes. If
web.config
file is not there, then the configuration settings are included frommachine.config
file. web.config file override the settings of machine.config at directory level.modified on Friday, May 13, 2011 4:11 AM