I have a bunch of C# functions with string, int and bool arguments that serve as data entry interfaces. I'd like to be able to create a webform for each method; a textbox for each string/int and a checkbox for each bool.
Is there a way to automate this process?
...
I have a grouped list of 4 radiobuttons. 2 of them are simply radiobuttons with labels, however, two of them are radiobuttons with drop downs.
Is it possible to have the corresponding radiobutton selected if I select an item from one of the drop downs?
For example, the following will allow the user to click on the label to select a rad...
Hi All
I have write the code in .Net. When I click the Buttun then fired below event. Please help how to do this.
protected void ddldesignation_SelectedIndexChanged(object sender, EventArgs e)
{
Code.
}
...
When the Page_Load event gets called to load the page, how would I have the page load already scrolled to a particular id. I cannot use a named anchor # because it breaks my css.
I can use javascript's scrollto function but i don't know how to call javascript from the asp.net page_load event.
I have several headers, and a menu that so...
In my application I am using a session variable for saving UserGroupId for user management. I put the values to the session in login page and I access this in the another page for control the users. But this will make the UserGroupId to 0, by then the users cannot access the page without another login. This will happen in certain time in...
I am using the javascript to open a child window using window.showModaldialog(), i have retuen a value from the child page is working fine in IE and firefox but is not working in chrome browser, is there any work around or alternative for it to work in chrome as well.
...
how link subreport to mainreport in rdlc
...
Hi everyone!I have a web application where i need to use entity frame work.Actually i came to know that Entity follows 3 layered model.So is it mandatory to use again 3 layered model while using entity?Can any give your valuable idea's and link's regarding this.
...
Lets assume there are list of users and under them there are several attributes. The users appear in checkboxlist. When a button is clicked it retrieves the attributes of the selected users and show them in other checkboxlists. Now when the attributes are selected and another button is pressed the selected attributes will be saved. My pr...
Hi please find the screenshot attached and provide me the logic how we can acheive this. I need to import this excel file. This is a sample image. I have no. of header rows and no. of columns will differ in each header.
Here is another information about the excel file.
Col cells are set with background color. IS there any way to read t...
I am testing my project in IE.working fine in Mozilla.
when i click on search button it is giving me the error
"The state information is invalid for this page and might be corrupted".
I have search button on master page and it is giving me error for Default page.
can anybody tell why this error occurs
...
<%@ Page Language="C#" MasterPageFile="~/HomeMaster.master" AutoEventWireup="true" CodeFile="HomePage.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cp1" Runat="Server">
<script language="javascript" type="text/javascript">
function checkInput()
{
var uname = document.ge...
protected void ButtonSheel_Click(object sender, EventArgs e)
...
I have an asp.net control textbox, clicking on which a jquery timepicker appears and user can select any time.But I want to validate the selected time so that it is one hour greater than the current time in the client side. I mean when textbox value will be changed it should be validated. Can anyone help me how to do this?
...
I have a deep-linking Silverlight RIA trying to consume a Twitter OAuth callback. The URL of the callback "page" in the RIA is:
http://example.com/RiaTestPage.aspx#callback
Twitter calls back to this URL so long as the # sign is URL encoded; so the callback url I supply to Twitter is:
http://example.com/RiaTestPage.aspx%23callback
...
the flow is:-
1. user enters email address
2. after submit, email is sent to the user
3. Email will include a link that will take the user to a reset password page..
now how do I fetch user's ID based on the email address and encrypt it ? then what that link should be??..like..what I want is fetch User ID then encrypt it somehow so tha...
Hi guys.
So I have GridView control and I would like to make a custom PagerStyle via css.
The problem is that I do not know how to change the style (color) of number indicating an active page. If I change the color property it changes a color of all page numbers. I would like to change color for active number and link numbers separatel...
Basically when editing an item, I want to bind its ProviderId value to the DropDownList's select value. DropDownList is getting its list of values from other entity entity_List as you can see.
Markup:
<asp:ListView ID="aList" runat="server" OnDataBound="aList_OnDataBound" DataKeyNames="ListServID" DataSourceID="ListServCon" InsertItemP...
I have a listbox which populated from using a datatable. I have a Add button in my page. On clicking the add button I want to insert a blank row in the listbox. This can be done easily by
ListBox_Admin.Items.Add("");
after this is done I want to select this item as in setfocus on this item.How do I do this.
...
Folks,
It's a nice scope for me to architect a fairly big portal application. I am aiming to write this application to stay in business for next 5 years at least.
For this application I am considering
SilverLight
ASP.net MVC
Complete (and/or Mixing with ASP.net) JAVA script base framework (jQuery, ExtJS etc).
I know the technical pro...