Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for sherinpoulose

I have only one content placeholder.my problem is earlier i had two content place holders.now i removed one.Then my master page design was showing while running. but when i was removing that not needed content placeholder tag from all aspx pages, in the middle i saw that master page design …

Member Avatar for ShivaSaurabh
0
227
Member Avatar for sherinpoulose

In my web application, i am taking an excel sheet with 8200 rows.it is getting uploaded and i am displaying it in a grid view. After that it is going to next page(say page2) where all column names will come in a drop down list and there i will check …

0
55
Member Avatar for sherinpoulose

I have created two roles(administrator and member) using membership provider.I want to give role of administrator only for my name. All other users should be automatically assigned the role 'member' while registering. how can i do this

0
48
Member Avatar for sherinpoulose

I have to divide dataset into training dataset(80%) and test dataset (20%) using random sampling.I have to implement it in c#.If anyone knows,please help me.....

Member Avatar for sherinpoulose
0
1K
Member Avatar for sherinpoulose

I have one asp.net table.I have attached it here.I have to make another table from this table.The format of the needed table is also attached. How can I do it?please help me to solve it.

Member Avatar for swatisharma7891
0
52
Member Avatar for sherinpoulose

I have sql table with 3 columns id, parentid and name.I have attached the table i have . Also i have attched the table output i want. In the name column ,there are so may values out which yes and no are two values which occur more than once. I …

Member Avatar for sherinpoulose
0
102
Member Avatar for sherinpoulose

how to populate treeview from multiple columns of sql data table I have attached my sql table here.from that table,i have to populate a treeview of the below form; -outlook ---------overcast -----------------------------yes ---------rainy ----------------wind ----------------------strong ------------------------------no ----------------------weak -------------------------------yes ---------sunny ---------------humidity ------------------------high --------------------------------no -------------------------normal ---------------------------------yes. It is readable like this; if …

Member Avatar for debasisdas
0
168
Member Avatar for sherinpoulose

I am using my own user registraion form because i don't want 'security question and answer' in create user wizard. now i have my own login form also. If I use asp.net login control(but my own registration form), can i then use membership provider for assigning roles and all. If …

0
63
Member Avatar for sherinpoulose

I am trying to generate rules form of output from user data.that output i have to store in sql database.so when each time , user is giving different data for processing, i have to create a new database for storing the rules from their data. how can i do this …

Member Avatar for adam_k
0
93
Member Avatar for sherinpoulose

I have data in arraylist like below. Item | outlook | < overcast > | yes | < rainy > | wind | < strong > | no | < weak > | yes | < sunny > | humidity | < high > | no | < normal > …

0
53
Member Avatar for sherinpoulose

I am using visual studio 2008 to develop the web application. but I am not using the login controls in asp.net for logging in of users.I created my own new user registration aspx page and login page.i have my own sql database.logged in user details are now successfully entered into …

Member Avatar for aspproject
0
132
Member Avatar for sherinpoulose

suppose there is a datatable (in asp.net,not sql database table) with 3 columns col1 col2 col3 high cool no high normal no low cool yes low normal no high dry yes low dry yes column values are like these. col3 name is already known. suppose col1 is selected now.then how …

Member Avatar for sherinpoulose
0
73
Member Avatar for sherinpoulose

I have a class in which there is a print method to print the output.the code is given below. [CODE] public class class1 { public void printNode(TreeNode root, string tabs) { string rootnode; string childnodes; rootnode = tabs + "| " + root.attribute + "|" + ":"; StringBuilder sb = …

Member Avatar for jfarrugia
0
120
Member Avatar for sherinpoulose

I have a class which has the method to print output.In that,i am using mobile control label.below is the code [CODE] public Label Label1; public LiteralText literalList; public void printNode(TreeNode root, string tabs) { Label1.Text = tabs + '|' + root.attribute + '|' + ':'; StringBuilder sb = new StringBuilder(); …

0
80
Member Avatar for sherinpoulose

I have a datatableof string values.one of the column name target attribute(that column will have maximum 4 different strings ,but all repeated in several rows,repetition of the four strings also not equal) is already known.I had found out which column number it has.again i have to find what are the …

Member Avatar for Vayne
0
128
Member Avatar for sherinpoulose

I have input data in excel and csv format.so depending upon whether user is giving excel or csv ,i have to use that.i have attached the code. [CODE] if (excelfileupload.HasFile) { String FilePath = Server.MapPath("~/Files/FileName.csv"); System.IO.File.Delete(FilePath); DropDownList1.Visible = true; DataSet excelds = (DataSet)Session["excelDataSet"]; DataTable samples = excelds.Tables[0]; ArrayList rowcontents = …

Member Avatar for sherinpoulose
0
101