Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for ypdev

Hi Everyone, I'm trying to set values using checkbox control inside SelectCommand. For example: checked = open unchecked = close + open or any value The 'checked' seems to be working fine but having an issue to fix the 'unchecked' part. SelectCommand="SELECT * FROM [table1] WHERE CurrentStatus = case when …

0
82
Member Avatar for ypdev

Hi, I am trying to connec to .mdb database using web.config but for some reason I receive an error "Path is invalid", can you please tell me what's wrong? **I've tried in so many ways, one of them was comment out.. [CODE] <%@ WebHandler Language="C#" Class="acData" %> using System; using …

0
49
Member Avatar for ypdev

Hi All, I would like to create navigation menu where all related links display in a small window like [URL="http://www.microsoft.com"]Microsoft website[/URL]. Is this CSS or JS? can you help with direction where to start from? Thanks... Perry

Member Avatar for ypdev
0
193
Member Avatar for ypdev

Hi, I am using SqlDataSource in order to bind data to dropdownlist and looking for a simple way to change text color based on specific value from database. Any idea if I can manipulate the SqlDataSource to do that? Is this something that I have to call from code-behind? This …

Member Avatar for ypdev
0
142
Member Avatar for ypdev

Hi Everyone, I developed a page with [URL="http://freetextbox.com/"]FreeTextBox[/URL] object which allows update text using rich text format. Now, If I type "TEST 123" and submit the data - works fine. If I type "TEST 123' and submit the data - I recieve the following error: Syntax error (missing operator) in …

Member Avatar for ypdev
0
99
Member Avatar for ypdev

Hi, I would like to pass data to dialog box where the page in background is faded out. A good example is when I click 'LOG IN' on DANIWEB, I get a dialog box with username and password fields and the rest of the screen is in gray. Can someone …

Member Avatar for ypdev
0
861
Member Avatar for ypdev

Hi, I am trying to pass query string from one page to popup window as follow: [CODE]Dim popupScript As String = "window.open('cFinder.aspx?cName=" & c_TextBox.Text & "','', 'width=420,height=200,menubar=no,scrollbars=yes');" If (Not Page.ClientScript.IsStartupScriptRegistered("popup")) Then Page.ClientScript.RegisterStartupScript(Me.GetType(), "popup", popupScript, True) End If[/CODE] The popup window comes up very well only if the text I typed …

Member Avatar for kvprajapati
0
268
Member Avatar for ypdev

Hi All, In the below code I take a string and split it, then assign it to a "Label" object. On my computer it works great but when I "Publish web site" I recieve the .NET error messages "Object reference not set to an instance of an object" and "Index …

Member Avatar for ypdev
0
209
Member Avatar for ypdev

Hi, I am trying to validate textbox inside gridview footer template as the following: [ICODE] <script language="javascript" type="text/javascript"> function validate(obj) { if (document.getElementById(obj).value=="") { alert("no data entered"); document.getElementById(obj).focus(); return false; } return true; } </script> [/ICODE] In the code behind, I added the following: [ICODE] Dim InsertN As TextBox = …

Member Avatar for essential
0
345
Member Avatar for ypdev

Hi, I am trying to validate RadioButtonList (ASP.NET) using the following js function but for some reason it does not working properly. I can't get the ID of the control as I would be.. Can you help please? [CODE] <asp:RadioButtonList ID="T_selector" runat="server"> <asp:ListItem Value="1">Team1</asp:ListItem> <asp:ListItem Value="2">Team2</asp:ListItem> </asp:RadioButtonList> [/CODE] [CODE] <script …

Member Avatar for ypdev
-1
251
Member Avatar for ypdev

Hi All - I would like to update extensionAttributeX of a user account based on Excel sheet. Any idea how to use the SELECT command with INNER JOIN option or other technique ? Thanks...

0
59
Member Avatar for ypdev

Hi, Does anyone know how to change the date format on the calendar components? The default is [B]MM/DD/YYYY[/B] and I would like to change it to [B]DD/MM/YYYY[/B] Thanks...

Member Avatar for ypdev
0
78
Member Avatar for ypdev

Hi Guys, I've got a code that basically storing data from several controls, one of the control is GridView. when I "Submit" I get all rows from GridView and I need only the selected rows.. I've tried to use: str = GridView1.SelectedRow.Cells(1).Text but it gives me an error when I …

Member Avatar for ypdev
0
884