Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Shahriar Iqbal Chowdhury Galib

@Shahriar Iqbal Chowdhury Galib
About
Posts
90
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with comments
    S Shahriar Iqbal Chowdhury Galib

    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?

    Article Writing help asp-net com architecture question

  • Bad Websites
    S Shahriar Iqbal Chowdhury Galib

    Haiti News Network is the most pathetic, real innovative work :)

    The Weird and The Wonderful html com sysadmin question

  • I Want a project using Global.asax file
    S Shahriar Iqbal Chowdhury Galib

    spent 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[^].

    ASP.NET csharp asp-net help

  • How disable refresh when enter key pressed in the form input text?
    S Shahriar Iqbal Chowdhury Galib

    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 help javascript html question

  • Javascript validation
    S Shahriar Iqbal Chowdhury Galib

    Need HTML codes as well as JS validation code to provide solution

    JavaScript javascript debugging question

  • is it possible to share the web.config across multiple projects in a solution?(ASP.NET)
    S Shahriar Iqbal Chowdhury Galib

    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[^]

    Web Development csharp asp-net question

  • Url rewriting rule
    S Shahriar Iqbal Chowdhury Galib

    Hi, 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.

    Regular Expressions com regex tutorial

  • hide repeating data
    S Shahriar Iqbal Chowdhury Galib

    hi, 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[^]

    ASP.NET help question

  • How to replace image onmouseover
    S Shahriar Iqbal Chowdhury Galib

    Hi, 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

    ASP.NET tutorial help

  • Textbox value dissappear when using FilteredTextboxExtender
    S Shahriar Iqbal Chowdhury Galib

    Hi, In FilteredTextBoxExtender you specified ValidChars="1234567890" this is why TextBox value "Quantity..." is not displayed.

    ASP.NET question sysadmin help

  • How to identify a particular Web site is not active
    S Shahriar Iqbal Chowdhury Galib

    HttpWebResponse response = (HttpWebResponse)request.GetResponse(); if (response == null || response.StatusCode != HttpStatusCode.OK)

    Web Development csharp tutorial question

  • create html file on the server side
    S Shahriar Iqbal Chowdhury Galib

    Hi, try this code below, if your page name is "signin.aspx" than

    StringWriter sw = new StringWriter();
    HttpContext.Current.Server.Execute("~/signin.aspx",sw,true);
    String renderedHtml=sw.ToString();

    ASP.NET html sysadmin

  • CheckBox ListView Multiple Selection Problem c# [modified]
    S Shahriar Iqbal Chowdhury Galib

    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[^]

    C# help csharp question

  • Theme for ASP.Net MVC 3
    S Shahriar Iqbal Chowdhury Galib

    Hi, 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/[^]

    Web Development asp-net csharp architecture question

  • how to add minimize and maximize buttons in a dfd in my company intranet
    S Shahriar Iqbal Chowdhury Galib

    Dan 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.

    JavaScript help tutorial

  • SCRUM master / release manager
    S Shahriar Iqbal Chowdhury Galib

    wizardzz wrote:

    we never needed a dedicated "master."

    thats why they are master, they dont do anyting :) :)

    Buzzword Bingo csharp business announcement career

  • GridView Column Width resizing with Mouse Darging
    S Shahriar Iqbal Chowdhury Galib

    hi,

    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/[^]

    ASP.NET

  • Regular Expression
    S Shahriar Iqbal Chowdhury Galib

    Hi, 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}

    ASP.NET regex tutorial

  • Image moves while doing show/hide
    S Shahriar Iqbal Chowdhury Galib

    Nitin1981 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%;">

    Web Development help javascript html sysadmin tools

  • How to find application URL while using separate script file in asp.net ?
    S Shahriar Iqbal Chowdhury Galib

    Try this code below

    var pgUrl='<%= this.Page.ResolveUrl("~/assets/WebServices/Admin/UsrRoleService.asmx") %>';

    ASP.NET question csharp asp-net tools tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups