Bài đăng

How to create a dummy postback in asp.net using javascript/jQuery?

     Some situation user need to trigger the postback dynamically from client side using javascript or jQuery. In this situation you can follow this method. Asp Button <asp:Button ID="dmypbbtn" runat="server" OnClick="dmycall" style="display:none;" /> javascript code document.getElementById("<%=dmypbbtn.ClientID%>").click(); jQuery Code $("#<%=dmypbbtn.ClientID%>").trigger('Click');      When you trigger the click function like the above format, the server side dmycall method will call with serverside postback.

How to pass argument with onclick event in asp.net?

     We can pass the argument to onclick serverside function using CommandArgument attribute like below. Asp Code    <asp:Button id="bid" CommandArgument="456" runat="server" OnClick="passvalue" /> serverside code (.cs)     protected void passvalue(object sender, EventArgs e)     {         LinkButton btn = (LinkButton)(sender);         String testval = btn.CommandArgument; //Returns 456     }

How to pass multiple arguments in onclick event in asp.net c#?

     We can pass the arguments(values) to onclick serverside function using CommandArgument attribute. Here we send the value using the same way of single value passing, but every values are separated by comma and from serverside we can split into unique data value. Asp Button    <asp:Button id="bid" CommandArgument="456,Rajesh" runat="server" OnClick="passvalue" /> serverside code (.cs)     protected void passvalues(object sender, EventArgs e)     {         LinkButton btn = (LinkButton)(sender);         String fullvalue = btn.CommandArgument;   //"456,Rajesh"         String[] args= fullvalue.Split(new char[] { ',' });         int mark = Convert.ToInt32(args[0]);   //Returns 456         string name = args[1];   ...

Glowing text using pure css and html

Hình ảnh
     The following animation created using pure css and html code no javascript. Example Program:- (Editor) Editor is Loading... Output:- Advertisement

How can I find dynamically trigger or native change from function?

Hình ảnh
     If you want to know if the dropdown change function is calling from human click change or call on dynamically change. You can use the following example. Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Eaiest way of debug the datatype mismatch in c#

Hình ảnh
     Consider one situation I need to pass some data to sql using linq to sql, so I am created and object for dbml and send the values through it. But it show some error, we can easy to identify the error while give the value directly to the method, so we can find the data type mismatch error.      In the following image we are pass the value directly, so we can find the data type mismatch. Compare to the both image third variable is wrong.

How to get the selected value from asp radio button list?

     Usually some one checking all the radio button(checked or not) one by one and get the selected radio button value. But we can get the radio button value in a single line using jquery. Example asp Radio button    <asp:RadioButtonList ID="Rbtn_ModeSetBy" runat="server">         <asp:ListItem Value="0">All Employees</asp:ListItem>         <asp:ListItem Value="1">Grade</asp:ListItem>         <asp:ListItem Value="2">Job Title</asp:ListItem>         <asp:ListItem Value="3">Employment Status</asp:ListItem>    </asp:RadioButtonList> jQuery Code    var val =$('[id*="<%=Rbtn_ModeSetBy.ClientID%>"]').find('input:checked').val();