135 Posted Topics

Member Avatar for clausont
Member Avatar for davy_yg
Re: Eval

Line 31 should be at line 74 You closed the repeater, before adding the content.

Member Avatar for BMXDad
0
162
Member Avatar for hookedtocsharp

Request.QueryString["Name"] will get you the query parameter named "Name". If you need the name of the page: string refPage = Request.UrlReferrer.ToString();

Member Avatar for JorgeM
0
188
Member Avatar for davy_yg

This should get you started: http://msdn.microsoft.com/en-us/centrum-asp-net.aspx

Member Avatar for JorgeM
0
201
Member Avatar for davy_yg

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?

Member Avatar for BMXDad
0
63
Member Avatar for anisha.silva

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(); %>`

Member Avatar for BMXDad
0
2K
Member Avatar for sk8ergirl

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 …

Member Avatar for BMXDad
0
287
Member Avatar for korathualex

jQuery can do that for you too ... $(document).ready(function() { $('#txtBoxId').focus(); });

Member Avatar for BMXDad
0
146
Member Avatar for raajsj
Member Avatar for cyberdaemon
0
173
Member Avatar for anisha.silva

It would be easier to do it in jQuery. $(function () { $('#business').toggle( function() { $('#businesslist .subb').prop('checked', true); }, function() { $('#businesslist .sub').prop('checked', false); } ); });

Member Avatar for prashant9928
0
2K
Member Avatar for brenton_77

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>

Member Avatar for brenton_77
0
3K
Member Avatar for anisha.silva

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 …

Member Avatar for BMXDad
0
183
Member Avatar for raajsj

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));

Member Avatar for raajsj
0
287
Member Avatar for ketan1234

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; }

Member Avatar for BMXDad
0
201
Member Avatar for nikhil257