Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:798109
More Search Options
RSS Available
Matching Posts
Re: Function to return a List for a dropdownlist or combobox
Hi, There is nothin called ComboBox here.. you can use DropDown itself it is equalant to combobox Thanks
Posted to
Visual Basic .NET
(Forum)
by
RatheeshC
on 8/27/2009
Re: Manipulating Gridview Data
Hello You can do that in RowDataBound event of GridView if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.Cells[0].Text == "John Smith") // Assume that first column represents name { e.Row.Cells[0].Text = "First Name: John Last Name: Smith" ; } } Thanks
Posted to
Data Presentation Controls
(Forum)
by
RatheeshC
on 8/27/2009
Re: I am trying to have a Gridview Search and then when the user Clicks "Update" on the result it goes back to the Full Gridview
Hello, Put your Gridview bind code inside !ispostback in Page_Load if(! ispostback) { }
Posted to
Data Presentation Controls
(Forum)
by
RatheeshC
on 8/27/2009
Re: iis not recognizing DataFormattingString="{0:f}" (Using C#)
Hello, The problem should be with the difference in cultural/system setting of your local machine and the development server. If your local m/c is in US culture then you can add <globalization uiCulture="en" culture="en-US" /> in the web.config and test You can do that in page level also <%@ Page UICulture="en" Culture="en-US" %> http://msdn.microsoft.com/en-us/library/bz9tc508.aspx Thanks
Posted to
Data Presentation Controls
(Forum)
by
RatheeshC
on 8/27/2009
Re: Can't add new option to a drowndown menu in JavaScript!
Hello, These sites would help u http://www.mredkj.com/tutorials/tutorial006.html http://www.java2s.com/Code/JavaScript/Form-Control/Addanoptiontoselect.htm http://javascript.internet.com/forms/adding-options.html Thanks
Posted to
Client Side Web Development
(Forum)
by
RatheeshC
on 8/27/2009
Re: jQuery ImageButton
Hello, For eg: If you want tio show the image button in another buttons (btnTest) click..Then $('#<%=btnTest.ClientID%>').click(function () { $('#<%=imgBtnShow.ClientID').show(); }); Better use style="display:none" in your Image Button to set it as invisible instead of Visible="false". Thanks
Posted to
Client Side Web Development
(Forum)
by
RatheeshC
on 8/27/2009
Re: How to find the row that selected when a control in that row was activated/chosen ?
Hello, You can use this to find the selected value of the dropdown list. sender is nothing but the control which raises the event. protected void ddlParameterName_SelectedIndexChanged(object sender, EventArgs e) { DropDownList ddl = (DropDownList)sender; string Value = ddl.SelectedValue; } Thanks
Posted to
Data Presentation Controls
(Forum)
by
RatheeshC
on 8/27/2009
Re: ASP Controll Values to Javascript
Hello, This should work for you function PTReportOpen() { var rdbId = document.getElementById('<%= RadioButtonList1.ClientID%>'); var radio = rdbId.getElementsByTagName("input"); alert(radio.length) for (i = 0; i < radio.length; i++) { if (radio[i].checked) alert("The RadioButtonValue is " + radio[i].value); } } Thanks
Posted to
Web Forms
(Forum)
by
RatheeshC
on 8/27/2009
Re: Close browser using button
You cannot do that way. ASP.NET will interpret < and > as Script Injection ans so is a security threat. thts y you are getting that error. You can try this in your ASPX page <asp:Button ID="btnClose" runat="server" Text="Test" OnClientClick="javascript:window.close();" /> Or if you dont want from aspx ,From code behind you can add this in Page_Load btnClose.Attributes.Add("onclick", "window.close();"); Thanks
Posted to
Client Side Web Development
(Forum)
by
RatheeshC
on 8/27/2009
Re: Problem in passing query string from master page to default page
Yes ..Its always like that only.. The button event will fire only after the Page_Load is completed Thanks
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
RatheeshC
on 8/26/2009
Page 1 of 119 (1189 items) 1
2
3
4
5
Next >
...
Last »
TechNet Edge:
AlignIT IT Manager Podcast #30 - Straight Talk about Windows 7
WindowsClient:
You know your post rate has gone down...
Silverlight:
Geek Profiles – Scott Guthrie
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 9 of 13
TechNet Edge:
Managing Your Virtual World - Tech Focus November 2009 Part 2
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
ASP.NET:
T4MVC now has a real home and a dedicated forum!
TechNet Edge:
Windows Server 2008 R2 : New Power Management Features
ASP.NET:
Web Deployment Painkillers: VS 2010 & MS Deploy
WindowsClient:
Application Accessibility Testing
WindowsClient:
Prism & WCF RIA Services
Channel 9:
Sharepoint 2010 and Claims-Based Identity
WindowsClient:
IRhetoric Ported To BlogEngine.NET
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online