- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
The Galaxy Is My Playground
16 Posted Topics
Hi all. i've been wanting to create a validation that user has to key in for e.g: 10/2009. i want it to have the number and the '/' char. i tried "^\d+$" which is only for numbers. ".*[/].*" which is only for '/' "^[0-9a-zA-Z]+$" which doesnt seem to work. can … | |
Hi all. I've been trying to do a sliding panel. all that i can find was collpasible panel. But it moves with my background as well. I didn't want my background to move. Can anyone help me? What I did was. [CODE] <ajaxToolkit:CollapsiblePanelExtender ID="CollapsiblePanelExtender1" runat="server" CollapseControlID="LBCollapse" ExpandControlID="LBExpand" CollapsedSize="0" CollapsedText="Expand it … | |
I've been trying to pass the url from previous page that i was at. But lets say from a different web to my web. i've tried [CODE]Page.Request.UrlReferrer.ToString[/CODE] but it seems like it only works within the same web project only. any ideas? | |
Re: i was just wondering. what if i want the value instead of the text item. lets say. [CODE]<asp:CheckBoxList ID="cblPlanets" runat="server" Width="109px"> <asp:ListItem Value="1">Mercury</asp:ListItem> <asp:ListItem Value="2">Venus</asp:ListItem> <asp:ListItem Value="3">Earth</asp:ListItem> <asp:ListItem Value="4">Mars</asp:ListItem> <asp:ListItem Value="5">Jupiter</asp:ListItem> <asp:ListItem Value="6">Saturn</asp:ListItem> </asp:CheckBoxList> [/CODE] and i want it to display You selected: 1 2 3 6 for e.g | |
I found a few where they past the item instead of the value. i want the value to be passed. for e.g [CODE]<asp:CheckBoxList ID="cblPlanets" runat="server" Width="109px"> <asp:ListItem Value="1">Mercury</asp:ListItem> <asp:ListItem Value="2">Venus</asp:ListItem> <asp:ListItem Value="3">Earth</asp:ListItem> <asp:ListItem Value="4">Mars</asp:ListItem> <asp:ListItem Value="5">Jupiter</asp:ListItem> <asp:ListItem Value="6">Saturn</asp:ListItem> </asp:CheckBoxList>[/CODE] and i want it to display You selected: 1 2 3 … | |
| |
Re: do u want to display the no or what? | |
Re: if you are trying to sum up a whole column, u have to use a for loop of GridView.Rows.Count | |
im using a datalist that display things that is called from datasource. in this list i have 2 panels and 2 buttons. the button is meant to hide the other panel. can anyone help me? i tried using itemcontrol but cant work.. | |
i want to store into a store procedure where a hyperlink from the gridview ir datalist can also function as a save button. the problem is that the list is from the database aswell. and there is a parameter from the table that i do not know how to pass. | |
im using menu item as my navigation. and im using this to remove my menu. [CODE] Private Sub RemoveItemByValue(ByVal Value As String) For i As Integer = 0 To Menu1.Items.Count - 1 If Menu1.Items(i).Value = Value Then Menu1.Items.Remove(Menu1.Items(i)) End If Next End Sub[/CODE] but i can only remove the top … | |
Re: if you change ur local setting. only your pc will be ok. try putting this into you web.config just below [CODE]<system.web> <globalization uiCulture="en" culture="en-US" /> [/CODE] if u want UK style... en-GB. hope that helps :D | |
hi guys. im actually a university fresh grad and i've been offered for two jobs. 1. flash actionscript programmer 2. web developer im still confuse which one i should take. can someone give me the pros and cons of both. :( | |
hi all. i've been doing a checkbox that is controlled by bitmaps. it is successful when i checked the check box and updated it. but it is not successful when i try to uncheck and update it. it will be as if it was checked like before. below is my … | |
i've created a stored procedure to display a gridview. but in my DDL i only want to display the whole column instead of the whole row. can anyone help me? | |
Re: this is very useful for me..thanks! i didn't use table or whatsoever..just a simple text and it works. :D |