No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
I want to display Rows in dynamically using ASP.NET with a condition of: If RowCount=7, then 8th Row should display in 2nd column. Ex: ---------------------------------- Theory Practicals ---------------------------------- AAA GGG AAAAAA GGGGGG ---------------------------------- BBB HHH BBBBBB ---------------------------------- CCC CCCCCC ---------------------------------- DDD DDDDDD ----------------------------------- EEE EEEEEE ----------------------------------- FFF FFFFFF -----------------------------------
This is C# code i need this code to convert into ASP.NET [code] protected void btn_Click(object sender, EventArgs e) { string strConnection = ConfigurationSettings.AppSettings["connectionString1"]; //Splitting ConnectionString to Extract Properties string[] spt1 = strConnection.Split(new Char[] { ';' }); string serverName = ""; string userName = ""; string passWord = ""; string …
The End.
pavankumard2079