Use vizaac Helpmaker
Thanks & Regards Pete
Use vizaac Helpmaker
Thanks & Regards Pete
Is there any DE version of .Net Framework. which can be installed on a English OS Machine?
Thanks & Regards Pete
you have to bind the id programatically while binding the data ti the data list use google to find how....
Thanks & Regards Pete
<div id="myDetail" ondblclick="Javascript:fnShowDetails(id)" > Datalist text </div>
Thanks & Regards Pete
use a DIV tag around the text where you want to double click, use javascript double click event handler to catch the event and open a new opup/redirect
Thanks & Regards Pete
you can export data to CSV. if you need to export more than 65000 rows :):)
Thanks & Regards Pete
it is better to generate the controls dynamically than creating a new page alltogether otherwise you have to compile a new page and it may add lot of complexity to your application
Thanks & Regards Pete
if you are trying to display the data in the page then use datagrid
Thanks & Regards Pete
Try this
class1 c ;
c=new Class1();
string aa;
aa = c.a1();
MessageBox.Show(aa);
c=New Class2();
aa = c.a1();
MessageBox.Show(aa);
this will work
Thanks & Regards Pete
Check whether ajax framework components are properly copied on to the server
Thanks & Regards Pete
Use
string[] arrFiles = Directory.GetFiles(strPath);
you will get the list files in a array of strings
Thanks & Regards Pete
I need to query the CSV file... there can be semicolons in the content also, so split will not help... i need to execute SQL Queries on the file using ADO..
Thanks & Regards Pete
Hi all I have a problem in processing Semicolon <;> seperated CSV file Web server Locale "en-US" CSV file Locale "de-DE" i will not be able to use "Microsoft text driver" Is there any known solution????
Thanks & Regards Pete
for html pages you might need to use encodeURIComponent() available in javascript :):)
Thanks & Regards Pete
string strEncoded = HttpUtility.UrlEncode("CCP – 2415 (ESC)");
Thanks & Regards Pete
Try using Server.UrlEncode() OR HttpUtility.UrlEncode() for the query string value this will encode the value
Thanks & Regards Pete
you can use rendercontrol method provided for each control try following code Table ctrl = new Table() StringBuilder sb = new StringBuilder(); StringWriter swrt = new StringWriter(sb); HtmlTextWriter ht = new HtmlTextWriter(swrt); ctrl.RenderControl(ht); TextWriter txt = ht.InnerWriter; String strHTML = txt.ToString();
Thanks & Regards Pete
You can use javascript base XMLDOM approch (AJAX) to achieve the task :):)
Thanks & Regards Pete
use event.keyCode property to trap the down arrow key and then for the call a fucntion which transfer the focus wherever you want (obj.focus()) :):):)
Thanks & Regards Pete
use a div tag to surround your text and add onclick functionality to that div tag. that should work. :):)
Thanks & Regards Pete