135 Posted Topics
Re: Are you rebinding after the click event? | |
Re: Line 31 should be at line 74 You closed the repeater, before adding the content. | |
Re: Request.QueryString["Name"] will get you the query parameter named "Name". If you need the name of the page: string refPage = Request.UrlReferrer.ToString(); | |
Re: This should get you started: http://msdn.microsoft.com/en-us/centrum-asp-net.aspx | |
Re: KodeBarang is a label so you'll need to make an instance of it first by locating it in the reapeater. Are you trying to find its value? | |
Re: If your method is set to public it can write directly when called: `public string MakeText() { string results; // Add code here return results; } This goes in aspx page, and will output what ever MakeText returns on page load. <%= MakeText(); %>` | |
Re: Your code is showing a GridView, but its named a ListBox? Anyway, if you're using data keys this will get row and a key(s) which can be used to remove the particular selection. This is not like above, where its only removed from the grid, to be shown again on … | |
Re: jQuery can do that for you too ... $(document).ready(function() { $('#txtBoxId').focus(); }); | |
Re: You need a return value between the two curley brackets on line 18, like mentioned above. | |
Re: It would be easier to do it in jQuery. $(function () { $('#business').toggle( function() { $('#businesslist .subb').prop('checked', true); }, function() { $('#businesslist .sub').prop('checked', false); } ); }); | |
Re: Just add a value to the "Text" attribute. If you need a dynamic entry you can set it from a public method. <asp:TextBox ID="txtBox" Text="Default Value" runat="server" ></asp:TextBox> | |
Re: In C#, this will loop throuh all controls and get their values ... you need to do something with it them though. private void GetControlValues(Control parent) { foreach (Control c in parent.Controls) { if (c is DropDownList) { string ddlValue = ((DropDownList)(c)).SelectedValue; } if (c is TextBox) { string txtbox … | |
Re: To split the string at the dash, with string **str** being the returned result ... string s = str.Substring(str.IndexOf("-")+1, str.Length - (str.IndexOf("-")+1)); | |
Re: Are you talking initial page load or after a post back? You can seperate post back and intial load by: if(!IsPostBack) { First page load; } if(IsPostBack) { Any page postback, but not the intial one; } | |