Hi i have put a checkbox on the page & adding a style style="display:none;" to it as: now generated html after running project is: <span style="display:none;"><input id="CheckBox1" type="checkbox" name="CheckBox1" /></span> rather than why ? same thing is for asp:RadioButton control. but it doesn't happen for ASP:Button control. what is the reason?
I Never Look Behind
Posts
-
style="display:none;" -
downloading a file from an url to the serverHi i have given an URL say http://www.mysite.com/x.pdf now i have to download this file [x.pdf] on the server through C# code. can any one help me in this regards?
-
getting list of parameters of a stored procedure in sql server 2005Thanks!!!
-
getting list of parameters of a stored procedure in sql server 2005Hi! there is a stored procedure containing 3 input parameter & 2 output parameters. now i want to write a sql query that lists parameters as well as their parameter types & data type for a particular sotred procedure. can any help me in this regards?
-
Reading MS Excel Sheet into datasetHi All! i have an excel file. i want to read data into data set. i have successfully read it into data set. but it doesn't images data. for image data it it returns database null. i want want to read data as well as image data into data set. can any one help me in this regards?
-
inserting XML data into database.Hi1 i have an XML file that contains RSS feed data. my task is to read the data of RSS feed into a dataset 7 then to create tables in the dayabase corresponding to each table in the dataset with relationships & primary keys. i have successed reading data into dataset & then inserting into database. now i want maitain relationships among these tables with primary key for each table. can any help me?
-
creating datatable in database from datasetHi, i have a dataset having two tables. now i want to create tables in database for these dataset tables. what will be the method.
-
importing data from an xml into sql server 2005hi all. i have an XML file say Data.xml & i have to import data from this xml file into sql server 2005. i havr only this not XSD & TXD file. can any help me?
-
cross page posting [modified]Thnaks
-
cross page posting [modified]Thnaks
-
cross page posting [modified]But all the steps are compulsory & if we put all control in a single page then it will become very complicated.
-
cross page posting [modified]Actuall it is a 7-step registering process 7 each step have large amount of data.
-
cross page posting [modified]i hvae already done this using session but i want ot do this using some other different thing.
-
cross page posting [modified]Hi! i have say 1.aspx, 2.aspx, 3.aspx & finally final.aspx. in 1.aspx i collect first name & last name; in second page 2.aspx i collects mobile & email; & in 3.aspx i collect address. finally i want to collect all the information in final.aspx want to save in database. the work flow for this is: 1.aspx -> 2.aspx -> 3.aspx -> finall.aspx. can any one help me in this regards? -- modified at 2:01 Monday 19th November, 2007
-
Multilingual SiteHi! i am developing a multilingual site in which i am using global resources. i want when an user select a language from a drop down list in the home page, this language automatically become default language for all web page for this session. i have solved this problem by putting selected language in session & in every page's page load event i have retrieve value from the session & set CurrentThread's CurrentUICulture & CurrentCulture. but i want when a user select a particular language then it become default laguage for this session. what is the solution?
-
Preventing post back on selected item of RadioButtonListGOOD! Thanks.
-
Preventing post back on selected item of RadioButtonListHi! i have a RadioButtonList & bind it to data source. now it has three radio button. whose text is X, Y & Z. i have make autopostback property TURE of RadioButtonList . now i want when i select third radio button having text Z,there should no post back & on selecting on X & Y there should no post back. is it possible?
-
adding a property in the classHi All! in my application, there is a table tblCountries(countryId,countryName) & i have a class: person public class Person { private string name; private int countryID; public string Name { get {return this.name;} set {this.name = value;} } public string CountryId { get {return this.countryID;} set {this.countryID= value;} } } now i want to add an property CountryName which returns name of the country name rather than country . can any one help me in this regards?
-
Refferences in Web.config fileHi All! In ASP.NET application, we have to give refferences of namespace in pagename.aspx.cs as: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using FE_SymmetricNamespace; using System.IO; is there is any way to give refferences in web.config file instead of using each page?