No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: You Can use the below code in your page just replace the source path at embed src="flash/logoround.swf" <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="364" height="54"> <param name="movie" value="flash/logoround.swf" /> <param name="quality" value="high" /> <embed src="flash/logoround.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="364" height="54"></embed> </object> | |
Re: WPF is next generation rich application development possible .It has so many features compare to normal windows application.It has variety controls as well typical databinding conecpts .Graphs,report,Chart applications so many things we can develop with more interactive . | |
Re: Pls check that is part_Page drop down visible and binded properly if you not found anything please give me a reply | |
Re: Hi , Please find the below code here i gave an example of csv file download here you can change whatever file name type you want private void Downloadfile() { System.IO.FileInfo file = new System.IO.FileInfo(@"D:\csv.csv"); if (file.Exists) { Response.Clear(); Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name); Response.AddHeader("Content-Length", file.Length.ToString()); Response.ContentType = "application/octet-stream"; Response.WriteFile(file.FullName); … | |
Re: Please go through this step by step it helps you to gain knowledge on Asp.net [url]http://msdn.microsoft.com/en-us/library/aa286485.aspx[/url] and also go to [url]http://www.asp.net/[/url] in this site you have many vedios for each and every concept like you requested above topics(css,js,.Net framework,c#,database). For HTML you can go to w3school | |
Re: Instead of this you can go for Crystal Reports or (SSRS)RDL Reports . | |
Re: Create a public class which contains the connection string and new connection creation in a single method. use the public class method in full project any where. [code] public class DBConnectionClass { public Sqlconnection GetConnection() { string ConnectionString=System.Configuration.ConfigurationMangare.Connectionstring["ConnectionStringNameinWeb.config"].tostring(); Sqlconnection Cn=new SqlConnection(ConnectionString); return Cn; } } [/code] It may helps you … | |
Re: Use Jquery Light Box feature it will be more help ful for your specific Requeirement. [url]http://wowslider.com/jquery-slider-3d-digit-stack-v-demo.html#[/url] | |
Re: Based on the Select query you wrote the columns will come . for example write in this way : select Regno,Name,Adress,Pincode from temptable this may gives you correct result | |
Re: Create Properties for the above fields you declared it will work like example below: int mid; public int Mid { get { return mid; } set { mid = value; } } |
The End.