Hi Everyone, Please see below for my latest article http://www.codeproject.com/Articles/690878/Whys-and-Hows-of-ASP-NET-MVC-Part-3 Problem is I don't see any comment section underneath and I haven't received the article posting points after posting. Can anyone please help me to resolve this issue?
Shahriar Iqbal Chowdhury Galib
Posts
-
Problem with comments -
Bad WebsitesHaiti News Network is the most pathetic, real innovative work :)
-
I Want a project using Global.asax filespent some time with google :) this is one good example http://www.dotnetcurry.com/ShowArticle.aspx?ID=126[^] or take 2/3 seconds to google yourself.Just like I do here[^].
-
How disable refresh when enter key pressed in the form input text?hi,
flashery wrote:
<input id="txtBox" type="url" önKeyPress="return runScript(event)"/>
Try this one
<input id="txtBox" type="url" onkeydown="javascript:return runScript(event)" onkeypress="javascript:return false;"/>
-
Javascript validationNeed HTML codes as well as JS validation code to provide solution
-
is it possible to share the web.config across multiple projects in a solution?(ASP.NET)Hi, I believe its possible, I googled and found some similar answer.You can check these links below, http://devlicio.us/blogs/derik_whittaker/archive/2008/04/15/how-to-share-configuration-files-between-projects.aspx[^] http://aaronfeng.blogspot.com/2006/03/override-default-net-configuration.html[^] http://stackoverflow.com/questions/4007572/is-it-possible-to-share-the-web-config-across-multiple-projects-in-a-solutionas[^]
-
Url rewriting ruleHi, You can use the JavaScript below,
var str="http://www.mysite.com/manufacturers/Name\_of\_Manufacturer\_6828/Name\_OF\_Product\_43146.htm";
str=str.replace("http://www.mysite.com/manufacturers/", "");
var key=str.split("/");
var manufacturer=key[0];
var product=key[1];
var to_index=manufacturer.lastIndexOf("_", manufacturer.length);
manufacturer=manufacturer.substring(0, to_index);
manufacturer=manufacturer.replace(/_/gi, "-");product=product.replace(/.htm/gi, "");
to_index=product.lastIndexOf("_", product.length);
product=product.substring(0, to_index);
product=product.replace(/_/gi, "-");
var cleanUrl="http://www.newsite.co.in/free-msds-download/"+manufacturer+"/"+product+"/";
document.write(cleanUrl);variable
cleanUrl
holds the url you are looking for.Hope this will help. -
hide repeating datahi, You cant hide repeating data, best you can do is represent data as group. You will find many cool js grid that represent grouped data. You can also look at these articles http://www.aspcode.net/ASPNET-grouping-repeater-control.aspx[^] A Grouping Repeater Control for ASP.NET[^] http://mattberseth.com/blog/2008/01/building_a_grouping_grid_with.html[^]
-
How to replace image onmouseoverHi, using JQury can do the trick. First assign id to your table/image elements, for example
<table id="table1">
<tr>
<td>
<b><img id="img1" src="ABC.jpg"/></b>
</td>
</tr>
</table>
<table id="table2">
<tr>
<td>
<b>TEXT</b>
</td>
</tr>
</table>Now use jquery
$("#table2").mouseover(function() {
$("#img1").attr("src","xyz.jpg");
}).mouseout(function(){
$("#img1").attr("src","abc.jpg");
});Thus mouseover event triggers each time you hover table2 and change the image to xyz.jpg you will get similar concept from here[^] Hope this will help
-
Textbox value dissappear when using FilteredTextboxExtenderHi, In
FilteredTextBoxExtender
you specifiedValidChars="1234567890"
this is whyTextBox
value "Quantity..." is not displayed. -
How to identify a particular Web site is not activeHttpWebResponse response = (HttpWebResponse)request.GetResponse(); if (response == null || response.StatusCode != HttpStatusCode.OK)
-
create html file on the server sideHi, try this code below, if your page name is
"signin.aspx"
thanStringWriter sw = new StringWriter();
HttpContext.Current.Server.Execute("~/signin.aspx",sw,true);
String renderedHtml=sw.ToString(); -
CheckBox ListView Multiple Selection Problem c# [modified]hi, You are missing
this.ListView1.MultiSelect = true;
Please go through msdn http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.multiselect.aspx#Y162[^]
-
Theme for ASP.Net MVC 3Hi, Please google and you will find many examples regarding this question, Some links you might find helpful http://danielsaidi.wordpress.com/2009/08/19/using-themes-in-asp-net-mvc/[^] http://www.emadibrahim.com/2008/10/02/themes-and-aspnet-mvc/[^]
-
how to add minimize and maximize buttons in a dfd in my company intranetDan muli wrote:
minimize and maximize buttons in a dfd
What do you mean by dfd?Please try and reword your question to explain more clearly what issue you are facing.
-
SCRUM master / release managerwizardzz wrote:
we never needed a dedicated "master."
thats why they are master, they dont do anyting :) :)
-
GridView Column Width resizing with Mouse Darginghi,
vishnukamath wrote:
Increase And Decrease Width of GridView Column on Mouse Darging
You can use ExtJs.net.It will solve your issue, check the demo http://examples.ext.net/[^]
-
Regular ExpressionHi, no, it's not possible with regular expression, regular expression can only validate patterns, you can use compare validator for this purpose or use .NET function DateTime.Now to acquire todays date, then compare it programmatically with the date from user's input. Regular expression for date is (?x)(?:0[1-9]|1[0-2])(/?)(?:0[1-9]|[12][0-9]|3[01])(\1)\d{4}\d/\d/\d{4}
-
Image moves while doing show/hideNitin1981 wrote:
<asp:Panel ID="Panel1" runat="server">
<table border="0" cellpadding="0" cellspacing="0" style="width:100%;">make table width to 98% and also panel width to 98%, i.e.
<asp:Panel ID="Panel1" runat="server" style="width:98%;">
<table border="0" cellpadding="0" cellspacing="0" style="width:98%;"> -
How to find application URL while using separate script file in asp.net ?Try this code below
var pgUrl='<%= this.Page.ResolveUrl("~/assets/WebServices/Admin/UsrRoleService.asmx") %>';