Showcase your knowledge about Apple's newest OS. Write a how-to or share a tip or trick about Snow Leopard and earn unlimited points!

 

Having problems asking a question? Have a general question about Experts Exchange? Let us know!

 
Time Tested ASP.Net Programming Solutions: 101 - 125 of 12778
 
When you put a new LinkButton1 control on a form and run it, then view the html sourcecode in the browser, you'll notice the linkbutton is defined as: <a id="LinkButton1" href="javascript:_...
Can you not validate a checkboxlist or something?  Here's what I have:  <tr><td><asp:CustomValidator Enabled="true" ID="cusValEntreeSelections" ControlToValidate="chkbxEntreeList" runat="se...
I have the following code. I am trying to create and save a .gif file. This works fine on my development box, but when I upload it to my hosted server, it fails with the error listed below. I ...
I have a datagrid with a button control in a template field.  When the button is clicked it runs a piece of VB code.  The first thing the code needs to run properly is the selected data key va...
How to find the child node in the Treeview. I am using the Visual Studio 2005. I am able to find the Root Node by using the following, but how to find the child node.         Dim name As Tree...
Hello, I have an asp.net page that contains an update panel and I am trying to figure out how to pass arguments on it when I call __doPostBack().  I have the following function in my javasc...
Hi, I have a dropdownlist in a gridview for the edit mode. The problem is when I click the edit button the dropdownlist's selected value is always the first value of the dropdownlist's items....
html input tag have onkeyup event, do server textbox tag have this event??? i means: <asp:TextBox id="txtHoLot" runat="server" Width="152px" BackColor="#FFFFC0" onkeyup = ...></asp:TextBox>
Hi, I recieve the following error when invoking a Webservice. It returns an ArrayList of an object called "News" There was an error generating the XML document. ---> System.InvalidOpera...
Ok I have a gridview that uses TemplateFields:                                     <asp:TemplateField HeaderText="Description">                                         <ItemTemplate>     ...
Does anyone know how to correct this? and if so... How? Server Error in '/' Application. -------------------------------------------------------------------------------- Unable to ...
1) Asp.net textbox must take decimal values only using javascript. 2)after decimal point,it should accept  the values upto two digits only.it should not take more than two digits. 3)here you...
I'm creating a small photo gallery app and I want to validate the file so that only JPEG or GIF files can be uploaded.  Can you guide me to how to do this?  I would like to use the CustomValid...
I have a web page with CustomerNameTextBox and CustomerIDTextBox in a web page. The javascript works fine when the CustomerIDTextBox visible property is true. But I don't want the end user see...
hi I have an asp.net c# imagebutton control as shown below - how can i get this control to call my javascript function chk() whcih i have declared in my html head section? <asp:imagebut...
Hi All For runtime dynamically generating rdlc reports in asp.net the following requirements are to be addressed: * Creating Dynamic Column, Data on runtime. * RDLC/RDL file created during ...
I am writing an ASP.Net 2.0 web page which contains a FileUpload control and a Button control for uploading the image.  The FileUpload control is validated on the client, on click of the uploa...
I am opening a User Entry page in an window when user tries to access 'Tracking.aspx'. below code popsUp window with Entry page Response.Write("<script>window.showModalDialog('Admin/UserEnt...
I need to get the real ip address of a user. See attached code.
Is there a known bug with trying to bind checkboxes to "Y"/"N" stored in the database? How to solve this error? The error points to line 39 which I have indicated below. <asp:Template...
Experts, I'm using the following code to load an XML document. This works in IE and FireFox but not in Google Chrome. Is there something I'm missing?
I am using GridView with OnSorting event being used to sort columns when Column Header are clicked. Just today my Application started getting Error without break in the Application Code where ...
Hi How would I create a dynamic xml file in asp.net in the following format?? <markers> <marker lat="47.608940" lng="-122.340141" "/> <marker lat="47.608940" lng="-122.340141" "/> <ma...
  Hi -   ASP.NET DropDownList Width Question,   My users are requesting that I give them a dropdownlist that is small and then when they click on it the list expands to the size of the...
I have a page which uses a Master Page. I just discovered that Page_Load event in the Child page first gets fired then the Master Page's Page_Load fired. I want to put some custom code that...