0
hi,
Actually, This files are ziped in winzip version 15.
so you get error unrecognized format.
0
Dear Jignesh,
I have downloaded the file webapplicationtest.zip.But while renaming it to .zipx,it is going to unrecognized format and cannot be open.What you mean about renaming?Just rename into .zipx format right? Pls reply .
Best regards,
Fuad
0
hi,
Download attachment and rename it to .zipx.
Attechment is whole project.
Let me know if you have trubble in download files.
0
Thank you for reply Jignesh,
I have downloaded the .zip file,but there is no .aspx file with it.pls reply.
Best regards,
Fuad
0
hi,
No it is not possible to access server code @ javascript.
but you can do one thing that provided in attechment.
Download attachment and rename it to .zipx.
In this project run controlTest.aspx
In this solution I post data on sever using Jquery and process at server
return value.
hope this will help u.
0
Thank you so much Jignesh,
This is what am searching.thank u so much..In my application while SelectedIndexChanged,the age and name of correspoding employee number want to come from database. I tried to get it for number of times,but getting error. Is it possible to write C# code (Like SqlConnection and SqlCommand) in Javasript?
Pls reply,
Fuad
Thanks,
0
hi,
Try...
ASPX:<html xmlns="
http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function dropdownchange(obj) {
var data = obj.value.split('^');
document.getElementById("txtEmpName").value = data[0];
document.getElementById("txtAge").innerHTML = data[1];
}
</script>
</head>
<body>
<form id="myform" runat="server">
<div>
<asp:DropDownList runat="server" ID="drpEmpId" onchange="dropdownchange(this)"></asp:DropDownList>
<br />
Name : <asp:TextBox ID="txtEmpName" runat="server"></asp:TextBox>
<br />
Age : <asp:Label ID="txtAge" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
CS....public partial class ControlTest : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
FillDropDown();
}
}
public void FillDropDown()
{
List<EmpDetails> emp = new List<EmpDetails>();
//EmpDetail is Name an age combination seprated by ^. you can use anycombination
emp.Add(new EmpDetails { EmpId = "Select", EmpDetail = "^" });
emp.Add(new EmpDetails { EmpId = "1000", EmpDetail = "Jignesh Trivedi^27" });
emp.Add(new EmpDetails { EmpId = "1001", EmpDetail = "Tejas Trivedi^29" });
emp.Add(new EmpDetails { EmpId = "1002", EmpDetail = "Rakesh Trivedi^20" });
drpEmpId.DataSource = emp;
drpEmpId.DataTextField = "EmpId";
drpEmpId.DataValueField = "EmpDetail";
drpEmpId.DataBind();
}
}
public class EmpDetails
{
public string EmpId {get;set;}
public string EmpDetail {get;set;}
}
this is the one way to display name and age.
hope this will answer of your que.

0
Thanks to Keyur & Jignesh for reply,
Actually what i am doing is,while selecting employee number in DropdownList,the name of the selected employee is showing in other DroDownList and his age is showing in label.But while selectedindexchanged the entire page is refreshing.Now i am using UpdatePanel for avoiding this page refreshing.But after selectingindexchanged,the appearance of DropDownList is changing.How can we rectify this problem?Can we avoid page refreshing other than UpdatePanel and fill employee name and age in corresponding Dropdownlist and label?
Pls reply,
Fuad
0
Hi
What you want to do exactly.see If you simply want the dropdownlist selected items then you do not require the AutoPostback = "true".
But If you want to do some actions in SelectedIndex change event then you need to set Autopostback="true".You can use Updatepanel if your site is Ajax enabled.
Please give more idea what you want to do.
Thanks
0
hi,
we can use Java script insted of updatepanel. but all code done client side.
but what is actual requirement?
0
Thanks Keyur,
If we are using AutoPostBach="true" the entire web pabe is refreshing.Is it possible to avoid page refreshing without using 'UpdatePanel'.
Pls reply,
Fuad
0
Hi
No if you want to handle SelectedIndex change event you need to set AutoPostBack = "true"
0
Thanks Keyur,
yes,thats correct,but i need to get these values and store it in variables in DropDwonList SelectedIndex changed event with AutoPostBack='false'.Is it possible?
Pls reply,
Fuad Pulpadan
0
Hi,
yes. you can get the selected values and text, you have to assign these in separate variables.
for ex
string str1, v;
v = DropDownList1.SelectedValue;
str1 = DropDownList1.SelectedItem.Text;
thanks.
If this post is useful then mark it as "Accepted Answer"
0
Hi
For selecting text and value you can use
dropdown1.SelectedItem.Text - using this you can get selected text
dropdown1.SelectedItem.Value - using this you can get selected value.
Hope this helps.
0
Thanks for reply..my problem is,i want to get both selected value and selected text from dropdownlist and store it in variable.This variable will be using in some other operation.Is it possible?thanks.
Regards,
Fuad
0
Hi,
There is no relation between the selected value and AutoPostBack.
The AutoPostBack property is set to true then it will automatically post back to the server and will run the indexchanged event in the drop down. If you want to perform any operation based on the selection then you need to do this.
If you have any other control with the event, when click on the button if you want to get the selected value then you can get it if any thing selected.
By default, AutoPostBack property will be false. If any item is selected then you can simply get the selected value of the drop down list.