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 Forums
Favorite Tags
Member Avatar for ashab27

hi , this is asha bhatt. i have one radiobuttonlist and checkboxlist and i want to do the validation for these in asp.net ,the validation part i know that plz see my code [code] protected void SubmitButton_Click(object sender, EventArgs e) { bool flage = false; bool valid = false; try …

Member Avatar for rajesh0223
0
336
Member Avatar for ashab27

hi, plz tell the select command of linq in asp.net i know all sql command , but linq dont know.

Member Avatar for kvprajapati
0
144
Member Avatar for ashab27

hi, I have 5 images and i want to do that is should come one by one without click on anywhere and without refresh the page also. how can i do that in page load event in asp.net (C#) plz tell me....................

0
62
Member Avatar for ashab27

hi, I have written the perogram in perl and i want take previous date in "April 3 2010" in this formate . plz tell me how can i get this. [code=perl]#!use/bin/perl use Date::Format; my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(); my @weekday = qw(Sunday Monday Tuesday Wednesday Thursday Friday Saturday); my @month = …

0
56
Member Avatar for ashab27

hi, I have date in this format December 2 2009 December 2 2009 December 2 2009 and i want to insert it in my table in mysql .I m inserting this with the help of perl means i m doing my program in perl .ook at my program [code=perl]#!/usr/bin/perl use …

Member Avatar for urtrivedi
0
177
Member Avatar for ashab27

hi, i m asha bhatt i have create check box list dynamically and i want to do the validation for that its checked or not this is my .aspx.cs code [code] using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using …

Member Avatar for kvprajapati
0
542
Member Avatar for ashab27

hi, i m asha bhatt. plz look at this my code i have declare this first :- [code] CheckBox chkList1; protected void Page_Load(object sender, EventArgs e) { } protected void NextQuestionButton_Click(object sender, EventArgs e) { createcheckbox(); } public void createcheckbox() { Response.Write("asha"); chkList1 = new CheckBox(); chkList1.Text = "strCheckboxText"; chkList1.ID …

Member Avatar for kvprajapati
0
1K
Member Avatar for ashab27

Thank you Hi, I am Asha Bhatt I have created one table (Question) , which contain 500 of row and 6 column. column name are QusID , Question , Option1 ,Option2 , Option3 , option4 . and in asp.net i have one button and one lable . when i click …

Member Avatar for urtrivedi
0
192
Member Avatar for ashab27

Hi, I am Asha Bhatt. I am making simple form in asp.net and validation in java script. we this is my .aspx.cs code [code] using System.Data.SqlClient; public partial class InterviewSet : System.Web.UI.Page { string scon = "Data Source=RBWORKSTATION2\\SQLEXPRESS;Initial Catalog=onlineexamdb;Integrated Security=True;MultipleActiveResultSets=true"; //SqlDataAdapter da; SqlCommand cmd; // DataSet ds; SqlDataReader readsid; public …

Member Avatar for kvprajapati
0
140
Member Avatar for ashab27

[code] public partial class QuestionPage : System.Web.UI.Page { string scon = "Data Source=RBWORKSTATION2\\SQLEXPRESS;Initial Catalog=onlineexamdb;Integrated Security=True;MultipleActiveResultSets=true"; SqlDataAdapter da; SqlCommand cmd; DataSet ds; SqlConnection con; ArrayList myArrayList = new ArrayList(); public String ques, option1,option2,option3,option4; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { SqlConnection con = new SqlConnection(scon); con.Open(); da = …

Member Avatar for mith_cool
0
133
Member Avatar for ashab27

hi this is my code protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { SqlConnection con = new SqlConnection(scon); con.Open(); da = new SqlDataAdapter("select Question,Option1,Option2,Option3,Option4 from QuestionData", con); ds = new DataSet(); da.Fill(ds); } } and this is `.aspx` <asp:FormView ID="FormView1" runat="server" DataSourceID="SqlDataSource1" Width="870px" AllowPaging="True" BorderColor="#999999" BorderStyle="Solid" CellPadding="3" ForeColor="Black" …

0
54
Member Avatar for ashab27

Hi, I am getting so much of problem on DataList This is my code in asp.net <asp:Button ID="NextQusButton" runat="server" onclick="NextQusButton_Click" Text=" Next " onclientclick="javascript: return validate()" Height="26px" /> </p> <p> <asp:DataList ID="ItemsList" runat="server" DataSourceID="SqlDataSource1" onitemcommand="ItemsList_ItemCommand" Visible="False"> <ItemTemplate> Question: <%#Container.ItemIndex %> <%# DataBinder.Eval(Container.DataItem, "Question")%> <br /> <asp:CheckBox ID="CheckBox1" runat="server" /> <%# …

0
91