Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

Vimal Raj

@Vimal Raj
About
Posts
21
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Table?
    V Vimal Raj

    I am still not sure about your requirement. I am assuming that you want to include multiple html tables inside a row of another html table. Is it something like this.

    <table width="100%">
    <tr>
    <td colspan=3>
    </tr>
    <tr>
    <td>
    <table><tr><td>First Table</td></tr></table>
    </td>

    <td>
    <table><tr><td>Second Table</td></tr></table>
    </td>

    <td>
    <table><tr><td>Third Table</td></tr></table>
    </td>
    </tr>
    </table>

    Or are you talking about displaying data from multiple database tables on a single row of your html table?

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.info

    ASP.NET csharp question

  • Table?
    V Vimal Raj

    Hi, The question you asked is a bit vague. Please make it more clear.

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.info

    ASP.NET csharp question

  • ASP.NET 2.0 Runtime Error!!! Very Important
    V Vimal Raj

    Hi, Check the version of System.EnterpriseServices assembly in the global cache. You need to add the respective version to the GAC. If your version of the file is missing then copy it from "windows\Microsoft.NET\Framework\v2.0\System.EnterpriseServices.dll" to the "windows\assembly\" folder. Hope this helps,

    Happy Programming, Vimal Raj MCAD.Net techisolutions.blogspot.com

    ASP.NET help csharp asp-net question announcement

  • How to set the datetimpicker value back to current datetime on a buttion click
    V Vimal Raj

    Hi, Try

    dateTimePicker1.Value = DateTime.Now.Date;

    . If this is not working, check whether there is any other event that is getting fired. Hope this helps,

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.blogspot.com

    C# csharp tutorial question

  • How to create a simple Moudle in DotnetNuke 4.8.4 in c# ? - very urgent
    V Vimal Raj

    Hi, Have a look at this. http://www.codeproject.com/KB/applications/LCTDNNModDev.aspx[^] Hope this helps,

    Happy Programming, Vimal Raj MCAD.Net techisolutions.blogspot.com

    ASP.NET tutorial csharp help question announcement

  • textbox events
    V Vimal Raj

    Hi, Have you tried the code which i gave in the last post. It can be used even if you are using an update panel. do let me know if you are getting any errors. Cheers...

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.blogspot.com

    ASP.NET question

  • textbox events
    V Vimal Raj

    Hi, It is better to use a client side script for this.You can use the following javascript code and call the same in the OnFocus event of the textbox. Insert this js in the aspx page in a script tag. function clearText(txtId) { if(document.getElementById(txtId).value=="Enter Text") { document.getElementById(txtId).value=""; } } And add this code to the codebehind file. TextBox1.Attributes.Add("OnFocus", "clearText('" + TextBox1.ClientID + "')"); Do let me know if you need more info. Cheers...

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.blogspot.com

    ASP.NET question

  • How to Set multiple items as selected in a ListBox with c# [modified]
    V Vimal Raj

    Hi, you can use the following code ListItem li; foreach (DataRow row in ds1.Tables[0].Rows) { li = lbRequestTime.Items.FindByValue(row["PerfTimeId"].ToString()); if (li != null) li.Selected = true; } Do let me know if you need more info. Cheers...

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.blogspot.com

    C# csharp asp-net help tutorial

  • selecting check box
    V Vimal Raj

    Hi, Just make the following two changes and it will work. update this line ckbHeader.Attributes.Add("onclick", "SelectAll(" + ckbHeader.ClientID.ToString() + ")"); to ckbHeader.Attributes.Add("onclick", "SelectAll(this)"); and update this javascript line var checkboxHeader = document.getElementById(idHeaderCheckbox); to var checkboxHeader = idHeaderCheckbox; Do let me know if u need more info, Cheers...

    Happy Programming, Vimal Raj MCAD.Net www.techisolutions.blogspot.com

    C# css help

  • How to add Textbox invisible mode
    V Vimal Raj

    Hi, You can try this. You load the textbox with its visibility set to true. And then make it invisible at client side when the page is loaded. And in this way , the textbox will not be visible to the user unless it is made visible by your clientside code. Do let me know if you need further help. Cheers...

    Happy Programming, Vimal Raj www.techisolutions.blogspot.com

    C# help tutorial question

  • selecting check box
    V Vimal Raj

    Hi, You can checkout my blog at http://techisolutions.blogspot.com/2008/02/datagridview-checkbox-select-all.html. I hope that you are using a gridview control. Cheers...

    Happy Programming, Vimal Raj

    C# css help

  • text box in loop (urgent)
    V Vimal Raj

    your post is a bit obscure. Try this . may be its of any use to you. Dim ctl as Control For Each ctl In Me.Controls If ctl.GetType.Name = "TextBox" Then Dim str, str1 As String str = ctl.Text.Substring(0, 3) str1 = ctl.Text.Substring(3, 7) End If Next If this is not what you need, then do make your post more clear. Happy Programming, Vimal

    ASP.NET

  • resource file(Urgent)
    V Vimal Raj

    Hi, The resx file must follow the naming convention basefilename.locale.resx ie myFile.en-US.resx Then you have to generate the .resources file with the resgen utility resgen filename.locale.resx which will give you filename.locale.resources file Then you have to create the satellite assembly using the AL command AL /t:lib /culture:locale /embed:filename.locale.resources /out:ResourcesDemo.resources.dll The /t switch tells that the output is of type library (DLL). The culture switch tells that the resources being embedded in the assembly are for the specified culture(/culture:en-US). /embed switch specifies the .resources file that is to be embedded in the Satellite Assembly. Finally, /out switch specifies the name of output assembly. if your Satellite Assembly is for culture en-US then you need to create a folder called en-US inside the bin folder and place the Satellite Assembly there. To read from the resource file you can use code like this. Dim rMngr As ResourceManager Dim ci As New CultureInfo("en-US") Thread.CurrentThread.CurrentCulture = ci rMngr = New ResourceManager("filename.locale",[Assembly].GetExecutingAssembly.GetSatelliteAssembly(ci)) Label1.Text=x.GetString("myLabel") for this you need a label control and a resource item myLabel. The code Dim ci As New CultureInfo("en-US") Thread.CurrentThread.CurrentCulture = ci is used to test the culture information. to use the local culture info you can use ci=Thread.CurrentThread.CurrentCulture Hope this is of some use to you Happy Programming, Vimal

    ASP.NET tutorial learning

  • Wrong datagrid event firing
    V Vimal Raj

    Happy Programming, Vimal

    ASP.NET help question

  • Wrong datagrid event firing
    V Vimal Raj

    Hi Matt, I hav never experianced a thing like this. when you said clicking the save button you mean you have set the updateText=Save right? then one more thing if you are not handling the deletecommand(say you are commenting out the deletecommand) then which event is fired? Happy Programming, Vimal

    ASP.NET help question

  • New in Asp.net ?
    V Vimal Raj

    take the command prompt and at the dot net framework version 1.1 path, type aspnet_regiis -i This will set up asp.net 1.1 on your machine. Happy Programming, Vimal

    ASP.NET csharp asp-net visual-studio sysadmin windows-admin

  • Wrong datagrid event firing
    V Vimal Raj

    Make sure that the procedure handles the updatecommand of the datagrid. If still not working do publish the code. Happy Programming, Vimal

    ASP.NET help question

  • resource file
    V Vimal Raj

    On the left pane, select the webproject item(the topmost one).Then on the right side you will get many options along which you can find Assembly Resource File. If you are still unlucky pls feel free to cntct. Happy Programming, Vimal

    ASP.NET csharp tutorial learning

  • how to put flash in vb.net
    V Vimal Raj

    You have to customize the toolbox to add a COM component : shockwave flash object. Then you can place that control inside the form and set the properties.Hope this meets ur needs. Happy Programming, Vimal Raj -- modified at 2:17 Saturday 21st January, 2006

    Visual Basic csharp adobe tutorial question

  • Can we change the heading of a datagrid?
    V Vimal Raj

    Hi, I am not sure if this is what you are lookin for. You can change the sql query like this Select BillNo as ID,MfgDate as MDate,unitprice as 'Unit Price' from BillProduct. This will give the header texts as you require.Otherwise there is no text property exposed for a rowheader cell. But you can handle the Paint event and draw header text yourself. Hopes this meet ur needs Vimal Raj

    Visual Basic database help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups