Click here to Skip to main content
15,888,195 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How this is done ? Pin
farazsk1129-Mar-08 3:01
farazsk1129-Mar-08 3:01 
GeneralRe: How this is done ? Pin
Bradml30-Mar-08 0:34
Bradml30-Mar-08 0:34 
Generalneed to generate a list of Spanish Alphabets Pin
Rocky#29-Mar-08 2:51
Rocky#29-Mar-08 2:51 
hi everyone,

I'm working on a making a Spanish translated version of a website and I need to generate Spanish alphabets in place of English alphabets which are being generated like this. Basically what I wanna know is the STARTING VALUE OF THE FIRST SPANISH ALPHABET IN UTF32.

Thanks in advance


protected void GenerateAlphabetPagingFields()<br />
    {<br />
        TableCell cell = new TableCell();<br />
        AlphabetPagingTable.Rows[0].Cells.Clear();<br />
        cell.ColumnSpan = 2;<br />
        treeviewDIV.Visible = true;<br />
        Table tab = AlphabetPagingTable;//(Table)StepCat.FindControl("AlphabetPagingTable");<br />
        if (tab != null)<br />
        {<br />
            for (int i = 65; i <= (65 + 25); i++)<br />
            {<br />
<br />
<br />
                LinkButton lb = new LinkButton();<br />
<br />
                lb.Text = Char.ConvertFromUtf32(i) + " ";<br />
<br />
                lb.CommandArgument = Char.ConvertFromUtf32(i);<br />
<br />
                lb.CommandName = "AlphaPaging";<br />
                lb.Click += new EventHandler(AlphabetPagingLink_Click);<br />
                cell.Controls.Add(lb);<br />
                tab.Rows[0].Cells.Add(cell);<br />
                Label lbl = new Label();<br />
                lbl.Text = " ";<br />
<br />
                lbl.Font.Underline = false;<br />
                TableCell td = new TableCell();<br />
                td.Controls.Add(lbl);<br />
<br />
                tab.Rows[0].Cells.Add(td);<br />
<br />
            }<br />
            //AlphabetPagingTable<br />
            <br />
        }<br />
        <br />
    }<br />


Rocky

Success is a ladder which you can't climb with your hands in your pockets.

GeneralCustom Paging Pin
.NET- India 29-Mar-08 2:09
.NET- India 29-Mar-08 2:09 
GeneralRe: Custom Paging Pin
Rocky#29-Mar-08 2:52
Rocky#29-Mar-08 2:52 
QuestionOpen a grid view in edit mode? Pin
docsoft28-Mar-08 23:50
docsoft28-Mar-08 23:50 
GeneralRe: Open a grid view in edit mode? Pin
Rocky#29-Mar-08 1:24
Rocky#29-Mar-08 1:24 
GeneralRe: Open a grid view in edit mode? Pin
docsoft29-Mar-08 7:28
docsoft29-Mar-08 7:28 
GeneralRe: Open a grid view in edit mode? Pin
Rocky#30-Mar-08 20:43
Rocky#30-Mar-08 20:43 
GeneralRe: Open a grid view in edit mode? Pin
farazsk1129-Mar-08 2:11
farazsk1129-Mar-08 2:11 
GeneralRe: Open a grid view in edit mode? Pin
docsoft29-Mar-08 7:18
docsoft29-Mar-08 7:18 
GeneralRe: Open a grid view in edit mode? Pin
farazsk1129-Mar-08 8:04
farazsk1129-Mar-08 8:04 
GeneralRe: Open a grid view in edit mode? Pin
docsoft29-Mar-08 8:40
docsoft29-Mar-08 8:40 
GeneralRe: Open a grid view in edit mode? Pin
farazsk1129-Mar-08 9:54
farazsk1129-Mar-08 9:54 
Generalhelp Pin
V.Sen...28-Mar-08 23:43
V.Sen...28-Mar-08 23:43 
GeneralRe: help Pin
farazsk1129-Mar-08 2:48
farazsk1129-Mar-08 2:48 
Questionsession timeout Pin
Soumini Ramakrishnan28-Mar-08 19:58
Soumini Ramakrishnan28-Mar-08 19:58 
GeneralRe: session timeout Pin
N a v a n e e t h28-Mar-08 20:33
N a v a n e e t h28-Mar-08 20:33 
GeneralRe: session timeout Pin
farazsk1129-Mar-08 2:23
farazsk1129-Mar-08 2:23 
GeneralSlow FTP transfer on Production server Pin
Gus'O.28-Mar-08 10:28
Gus'O.28-Mar-08 10:28 
Generalerror on insert a new row in a custom gridview Pin
zio_pino28-Mar-08 8:40
zio_pino28-Mar-08 8:40 
GeneralRe: error on insert a new row in a custom gridview Pin
led mike28-Mar-08 9:07
led mike28-Mar-08 9:07 
GeneralRe: error on insert a new row in a custom gridview Pin
zio_pino31-Mar-08 5:32
zio_pino31-Mar-08 5:32 
QuestionDropDownList Creation Pin
kontax28-Mar-08 8:08
kontax28-Mar-08 8:08 
GeneralRe: DropDownList Creation Pin
Mark J. Miller28-Mar-08 9:25
Mark J. Miller28-Mar-08 9:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.